about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyro4
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-03 00:15:35 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-03 00:16:11 +0100
commitb17fca4a0f7baeeda65901afeeb8963538589e9c (patch)
tree3a67b39c42faef7681b6ed2ba8570981e9c2af8a /pkgs/development/python-modules/pyro4
parentf224edb877360161f3fcfd8c5934bbee36225991 (diff)
pythonPackages.Pyro4: Fix hanging tests on darwin
Diffstat (limited to 'pkgs/development/python-modules/pyro4')
-rw-r--r--pkgs/development/python-modules/pyro4/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pyro4/default.nix b/pkgs/development/python-modules/pyro4/default.nix
index c5211162c65a8..508722e70fb4f 100644
--- a/pkgs/development/python-modules/pyro4/default.nix
+++ b/pkgs/development/python-modules/pyro4/default.nix
@@ -37,9 +37,7 @@ buildPythonPackage rec {
   preCheck = "PYTHONPATH=tests/PyroTests:$PYTHONPATH";
 
   # ignore network related tests, which fail in sandbox
-  pytestFlagsArray = [ "--ignore=tests/PyroTests/test_naming.py" ]
-    # test hangs on darwin with sandbox enabled
-    ++ lib.optionals stdenv.isDarwin [ "--ignore=tests/PyroTests/test_daemon.py" ];
+  pytestFlagsArray = [ "--ignore=tests/PyroTests/test_naming.py" ];
 
   disabledTests = [
     "StartNSfunc"
@@ -47,6 +45,9 @@ buildPythonPackage rec {
     "GetIP"
   ];
 
+  # otherwise the tests hang the build
+  __darwinAllowLocalNetworking = true;
+
   meta = with stdenv.lib; {
     description = "Distributed object middleware for Python (RPC)";
     homepage = "https://github.com/irmen/Pyro4";