nixpkgs/pkgs/development/python-modules/hyperlink/default.nix

21 lines
494 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, idna }:
2017-08-15 10:44:28 +03:00
buildPythonPackage rec {
pname = "hyperlink";
2019-10-24 09:47:35 +03:00
version = "19.0.0";
2017-08-15 10:44:28 +03:00
src = fetchPypi {
inherit pname version;
2019-10-24 09:47:35 +03:00
sha256 = "4288e34705da077fada1111a24a0aa08bb1e76699c9ce49876af722441845654";
2017-08-15 10:44:28 +03:00
};
propagatedBuildInputs = [ idna ];
2017-08-15 10:44:28 +03:00
meta = with stdenv.lib; {
description = "A featureful, correct URL for Python";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ apeschar ];
};
}