diff options
Diffstat (limited to 'pkgs/development/python-modules/hyperlink/default.nix')
-rw-r--r-- | pkgs/development/python-modules/hyperlink/default.nix | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/hyperlink/default.nix b/pkgs/development/python-modules/hyperlink/default.nix index 1b617cf1b7c9..579cfb065fa6 100644 --- a/pkgs/development/python-modules/hyperlink/default.nix +++ b/pkgs/development/python-modules/hyperlink/default.nix @@ -1,9 +1,10 @@ -{ lib -, buildPythonPackage -, fetchPypi -, isPy27 -, idna -, typing ? null +{ + lib, + buildPythonPackage, + fetchPypi, + isPy27, + idna, + typing ? null, }: buildPythonPackage rec { @@ -16,11 +17,10 @@ buildPythonPackage rec { sha256 = "0sx50lkivsfjxx9zr4yh7l9gll2l9kvl0v0w8w4wk2x5v9bzjyj2"; }; - propagatedBuildInputs = [ idna ] - ++ lib.optionals isPy27 [ typing ]; + propagatedBuildInputs = [ idna ] ++ lib.optionals isPy27 [ typing ]; meta = with lib; { - description = "A featureful, correct URL for Python"; + description = "Featureful, correct URL for Python"; homepage = "https://github.com/python-hyper/hyperlink"; license = licenses.mit; platforms = platforms.all; |