aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/hyperlink/default.nix
blob: 1fc490178215b5e6bad2f985b044582506e0ccb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, idna }:

buildPythonPackage rec {
  pname = "hyperlink";
  version = "19.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "4288e34705da077fada1111a24a0aa08bb1e76699c9ce49876af722441845654";
  };

  propagatedBuildInputs = [ idna ];

  meta = with stdenv.lib; {
    description = "A featureful, correct URL for Python";
    license = licenses.mit;
    platforms = platforms.all;
    maintainers = with maintainers; [ apeschar ];
  };
}