diff options
Diffstat (limited to 'pkgs/development/python-modules/httpsig/default.nix')
-rw-r--r-- | pkgs/development/python-modules/httpsig/default.nix | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/httpsig/default.nix b/pkgs/development/python-modules/httpsig/default.nix index fe7ed11c2fff..f18ee0857bfc 100644 --- a/pkgs/development/python-modules/httpsig/default.nix +++ b/pkgs/development/python-modules/httpsig/default.nix @@ -1,12 +1,13 @@ -{ lib -, buildPythonPackage -, fetchPypi -, setuptools -, setuptools-scm -, pycryptodome -, requests -, six -, pytestCheckHook +{ + lib, + buildPythonPackage, + fetchPypi, + setuptools, + setuptools-scm, + pycryptodome, + requests, + six, + pytestCheckHook, }: buildPythonPackage rec { @@ -31,9 +32,7 @@ buildPythonPackage rec { setuptools ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "httpsig" ]; |