diff options
Diffstat (limited to 'pkgs/development/python-modules/cart/default.nix')
-rw-r--r-- | pkgs/development/python-modules/cart/default.nix | 29 |
1 files changed, 11 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/cart/default.nix b/pkgs/development/python-modules/cart/default.nix index 7373ac0691cc..54b25617a0c7 100644 --- a/pkgs/development/python-modules/cart/default.nix +++ b/pkgs/development/python-modules/cart/default.nix @@ -1,9 +1,10 @@ -{ lib -, pycryptodome -, buildPythonPackage -, fetchFromGitHub -, pythonOlder -, pytestCheckHook +{ + lib, + pycryptodome, + buildPythonPackage, + fetchFromGitHub, + pythonOlder, + pytestCheckHook, }: buildPythonPackage rec { @@ -20,21 +21,13 @@ buildPythonPackage rec { hash = "sha256-0dHdXb4v92681xL21FsrIkNgNQ9R5ULV1lnSCITZzP8="; }; - propagatedBuildInputs = [ - pycryptodome - ]; + propagatedBuildInputs = [ pycryptodome ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pytestFlagsArray = [ - "unittests" - ]; + pytestFlagsArray = [ "unittests" ]; - pythonImportsCheck = [ - "cart" - ]; + pythonImportsCheck = [ "cart" ]; meta = with lib; { description = "Python module for the CaRT Neutering format"; |