pythonPackages.trio: disable the tests on Darwin

This commit is contained in:
Wael M. Nasreddine 2019-07-16 14:39:54 -07:00
parent c91c387a9e
commit 5995755b68
No known key found for this signature in database
GPG Key ID: FD437548E0BF0F5F
1 changed files with 4 additions and 0 deletions

View File

@ -9,6 +9,7 @@
, pyopenssl , pyopenssl
, trustme , trustme
, sniffio , sniffio
, stdenv
, jedi , jedi
, pylint , pylint
}: }:
@ -37,6 +38,9 @@ buildPythonPackage rec {
sniffio sniffio
] ++ lib.optionals (pythonOlder "3.7") [ contextvars ]; ] ++ lib.optionals (pythonOlder "3.7") [ contextvars ];
# tests are failing on Darwin
doCheck = !stdenv.isDarwin;
meta = { meta = {
description = "An async/await-native I/O library for humans and snake people"; description = "An async/await-native I/O library for humans and snake people";
homepage = https://github.com/python-trio/trio; homepage = https://github.com/python-trio/trio;