mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
pythonPackages.trio: disable the tests on Darwin
This commit is contained in:
parent
c91c387a9e
commit
5995755b68
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user