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