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