ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / hyperlink / default.nix
blob21927683b18b95a7b300cce9e206dfe8df9d4e0e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy27
5 , idna
6 , typing ? null
7 }:
9 buildPythonPackage rec {
10   pname = "hyperlink";
11   version = "21.0.0";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "0sx50lkivsfjxx9zr4yh7l9gll2l9kvl0v0w8w4wk2x5v9bzjyj2";
16   };
18   propagatedBuildInputs = [ idna ]
19     ++ lib.optionals isPy27 [ typing ];
21   meta = with lib; {
22     description = "A featureful, correct URL for Python";
23     homepage = "https://github.com/python-hyper/hyperlink";
24     license = licenses.mit;
25     platforms = platforms.all;
26     maintainers = with maintainers; [ apeschar ];
27   };