about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Haupert <mail@vincent-haupert.de>2021-01-09 18:36:03 +0100
committerVincent Haupert <mail@vincent-haupert.de>2021-01-09 18:36:46 +0100
commitcaaf5daa95f4291bf4d88e7cfa7f32a72ea0e805 (patch)
tree15a79d8cb896dd26bc7e5ece7e5139f22d12a016
parent85b23ec5e5867be9ca1ccca02d0e404536ac6a21 (diff)
downloadnixlib-caaf5daa95f4291bf4d88e7cfa7f32a72ea0e805.tar
nixlib-caaf5daa95f4291bf4d88e7cfa7f32a72ea0e805.tar.gz
nixlib-caaf5daa95f4291bf4d88e7cfa7f32a72ea0e805.tar.bz2
nixlib-caaf5daa95f4291bf4d88e7cfa7f32a72ea0e805.tar.lz
nixlib-caaf5daa95f4291bf4d88e7cfa7f32a72ea0e805.tar.xz
nixlib-caaf5daa95f4291bf4d88e7cfa7f32a72ea0e805.tar.zst
nixlib-caaf5daa95f4291bf4d88e7cfa7f32a72ea0e805.zip
python3Packages.asgiref: disable test on Darwin
-rw-r--r--pkgs/development/python-modules/asgiref/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/asgiref/default.nix b/pkgs/development/python-modules/asgiref/default.nix
index dc7b160b9432..a14c294bf682 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;