diff options
Diffstat (limited to 'pkgs/development/python-modules/portion/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/portion/default.nix | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/portion/default.nix b/pkgs/development/python-modules/portion/default.nix index 5cba2a579294..51ca2c119026 100644 --- a/pkgs/development/python-modules/portion/default.nix +++ b/pkgs/development/python-modules/portion/default.nix @@ -1,11 +1,12 @@ -{ lib -, buildPythonPackage -, pythonOlder -, fetchFromGitHub -, setuptools -, wheel -, sortedcontainers -, pytestCheckHook +{ + lib, + buildPythonPackage, + pythonOlder, + fetchFromGitHub, + setuptools, + wheel, + sortedcontainers, + pytestCheckHook, }: buildPythonPackage rec { @@ -27,17 +28,11 @@ buildPythonPackage rec { wheel ]; - dependencies = [ - sortedcontainers - ]; + dependencies = [ sortedcontainers ]; - pythonImportsCheck = [ - "portion" - ]; + pythonImportsCheck = [ "portion" ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; meta = with lib; { description = "Portion, a Python library providing data structure and operations for intervals"; |
