python3Packages.asgiref: disable test on Darwin

This commit is contained in:
Vincent Haupert 2021-01-09 18:36:03 +01:00
parent 85b23ec5e5
commit caaf5daa95
No known key found for this signature in database
GPG Key ID: A8B605E96F82B4E4

View File

@ -5,6 +5,7 @@
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, lib
}:
buildPythonPackage rec {
@ -27,6 +28,10 @@ buildPythonPackage rec {
pytest-asyncio
];
disabledTests = lib.optionals stdenv.isDarwin [
"test_multiprocessing"
];
meta = with stdenv.lib; {
description = "Reference ASGI adapters and channel layers";
license = licenses.bsd3;