Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / hyperlink / default.nix
blobbab7986eda22307cc1b4e13ca0a5ef42dbc761a6
1 { lib, buildPythonPackage, fetchPypi, isPy27, idna, typing }:
3 buildPythonPackage rec {
4   pname = "hyperlink";
5   version = "20.0.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "47fcc7cd339c6cb2444463ec3277bdcfe142c8b1daf2160bdd52248deec815af";
10   };
12   propagatedBuildInputs = [ idna ]
13     ++ lib.optionals isPy27 [ typing ];
15   meta = with lib; {
16     description = "A featureful, correct URL for Python";
17     license = licenses.mit;
18     platforms = platforms.all;
19     maintainers = with maintainers; [ apeschar ];
20   };