pythonPackages.trio: disable the tests on Darwin
This commit is contained in:
parent
c91c387a9e
commit
5995755b68
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue