diff options
Diffstat (limited to 'pkgs/development/python-modules/first/default.nix')
-rw-r--r-- | pkgs/development/python-modules/first/default.nix | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/first/default.nix b/pkgs/development/python-modules/first/default.nix index 0e75f61a9f70..70edb1114542 100644 --- a/pkgs/development/python-modules/first/default.nix +++ b/pkgs/development/python-modules/first/default.nix @@ -1,7 +1,8 @@ -{ lib -, buildPythonPackage -, fetchPypi -, pythonOlder +{ + lib, + buildPythonPackage, + fetchPypi, + pythonOlder, }: buildPythonPackage rec { @@ -18,12 +19,10 @@ buildPythonPackage rec { doCheck = false; # no tests - pythonImportsCheck = [ - "first" - ]; + pythonImportsCheck = [ "first" ]; meta = with lib; { - description = "The function you always missed in Python"; + description = "Function you always missed in Python"; homepage = "https://github.com/hynek/first/"; changelog = "https://github.com/hynek/first/blob/${version}/HISTORY.rst"; license = licenses.mit; |