diff options
Diffstat (limited to 'pkgs/development/python-modules/pyspx/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pyspx/default.nix | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/pyspx/default.nix b/pkgs/development/python-modules/pyspx/default.nix index b8e3cb49df6f..56f3ffcffa34 100644 --- a/pkgs/development/python-modules/pyspx/default.nix +++ b/pkgs/development/python-modules/pyspx/default.nix @@ -1,11 +1,12 @@ -{ lib -, buildPythonPackage -, cffi -, fetchFromGitHub -, pytestCheckHook -, pythonOlder -, setuptools -, wheel +{ + lib, + buildPythonPackage, + cffi, + fetchFromGitHub, + pytestCheckHook, + pythonOlder, + setuptools, + wheel, }: buildPythonPackage rec { @@ -29,13 +30,9 @@ buildPythonPackage rec { wheel ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "pyspx" - ]; + pythonImportsCheck = [ "pyspx" ]; meta = with lib; { description = "Python bindings for SPHINCS"; |