diff options
Diffstat (limited to 'pkgs/development/python-modules/pyro4/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pyro4/default.nix | 31 |
1 files changed, 13 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/pyro4/default.nix b/pkgs/development/python-modules/pyro4/default.nix index 7b0c8229c899..387d5135d2d7 100644 --- a/pkgs/development/python-modules/pyro4/default.nix +++ b/pkgs/development/python-modules/pyro4/default.nix @@ -1,12 +1,13 @@ -{ lib -, buildPythonPackage -, cloudpickle -, dill -, fetchPypi -, msgpack -, pytestCheckHook -, pythonAtLeast -, serpent +{ + lib, + buildPythonPackage, + cloudpickle, + dill, + fetchPypi, + msgpack, + pytestCheckHook, + pythonAtLeast, + serpent, }: buildPythonPackage rec { @@ -24,9 +25,7 @@ buildPythonPackage rec { hash = "sha256-UR9bCATpLdd9wzrfnJR3h+P56cWpaxIWLwVXp8TOIfs="; }; - propagatedBuildInputs = [ - serpent - ]; + propagatedBuildInputs = [ serpent ]; buildInputs = [ dill @@ -34,9 +33,7 @@ buildPythonPackage rec { msgpack ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; # add testsupport.py to PATH preCheck = '' @@ -57,9 +54,7 @@ buildPythonPackage rec { # otherwise the tests hang the build __darwinAllowLocalNetworking = true; - pythonImportsCheck = [ - "Pyro4" - ]; + pythonImportsCheck = [ "Pyro4" ]; meta = with lib; { description = "Distributed object middleware for Python (RPC)"; |