From caaf5daa95f4291bf4d88e7cfa7f32a72ea0e805 Mon Sep 17 00:00:00 2001 From: Vincent Haupert Date: Sat, 9 Jan 2021 18:36:03 +0100 Subject: [PATCH] python3Packages.asgiref: disable test on Darwin --- pkgs/development/python-modules/asgiref/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/asgiref/default.nix b/pkgs/development/python-modules/asgiref/default.nix index dc7b160b943..a14c294bf68 100644 --- a/pkgs/development/python-modules/asgiref/default.nix +++ b/pkgs/development/python-modules/asgiref/default.nix @@ -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;