diff options
Diffstat (limited to 'pkgs/development/python-modules/pyzipper/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pyzipper/default.nix | 31 |
1 files changed, 12 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/pyzipper/default.nix b/pkgs/development/python-modules/pyzipper/default.nix index 5aa583228b49..8112958b10c3 100644 --- a/pkgs/development/python-modules/pyzipper/default.nix +++ b/pkgs/development/python-modules/pyzipper/default.nix @@ -1,10 +1,11 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pythonOlder -, pytestCheckHook -, pycryptodomex -, setuptools +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pythonOlder, + pytestCheckHook, + pycryptodomex, + setuptools, }: buildPythonPackage rec { @@ -23,21 +24,13 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; - propagatedBuildInputs = [ - pycryptodomex - ]; + propagatedBuildInputs = [ pycryptodomex ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "pyzipper" - ]; + pythonImportsCheck = [ "pyzipper" ]; disabledTests = [ # Tests are parsing CLI output |