diff options
Diffstat (limited to 'pkgs/development/python-modules/grandalf/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/grandalf/default.nix | 27 |
1 files changed, 11 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/grandalf/default.nix b/pkgs/development/python-modules/grandalf/default.nix index 1852364fbfe2..c447d061e4a2 100644 --- a/pkgs/development/python-modules/grandalf/default.nix +++ b/pkgs/development/python-modules/grandalf/default.nix @@ -1,10 +1,11 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pyparsing -, future -, pytestCheckHook -, pythonOlder +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pyparsing, + future, + pytestCheckHook, + pythonOlder, }: buildPythonPackage rec { @@ -26,17 +27,11 @@ buildPythonPackage rec { future ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - patches = [ - ./no-setup-requires-pytestrunner.patch - ]; + patches = [ ./no-setup-requires-pytestrunner.patch ]; - pythonImportsCheck = [ - "grandalf" - ]; + pythonImportsCheck = [ "grandalf" ]; meta = with lib; { description = "Module for experimentations with graphs and drawing algorithms"; |
