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

View File

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