diff options
Diffstat (limited to 'pkgs/development/python-modules/semantic-version/default.nix')
-rw-r--r-- | pkgs/development/python-modules/semantic-version/default.nix | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/semantic-version/default.nix b/pkgs/development/python-modules/semantic-version/default.nix index d80afabb2169..26f33ea2a368 100644 --- a/pkgs/development/python-modules/semantic-version/default.nix +++ b/pkgs/development/python-modules/semantic-version/default.nix @@ -1,8 +1,9 @@ -{ lib -, fetchPypi -, buildPythonPackage -, pythonOlder -, pytestCheckHook +{ + lib, + fetchPypi, + buildPythonPackage, + pythonOlder, + pytestCheckHook, }: buildPythonPackage rec { @@ -18,18 +19,17 @@ buildPythonPackage rec { hash = "sha256-vau20zaZjLs3jUuds6S1ah4yNXAdwF6iaQ2amX7VBBw="; }; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "semantic_version" - ]; + pythonImportsCheck = [ "semantic_version" ]; meta = with lib; { - description = "A library implementing the 'SemVer' scheme"; + description = "Library implementing the 'SemVer' scheme"; homepage = "https://github.com/rbarrois/python-semanticversion/"; license = licenses.bsd2; - maintainers = with maintainers; [ layus makefu ]; + maintainers = with maintainers; [ + layus + makefu + ]; }; } |