hyperlink: init at 17.3.0

This commit is contained in:
Albert Peschar 2017-08-15 09:44:28 +02:00 committed by Frederik Rietdijk
parent eff07f381c
commit cfda60042d
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, buildPythonPackage, fetchurl, pytest }:
buildPythonPackage rec {
name = "hyperlink-${version}";
version = "17.3.0";
src = fetchurl {
url = "mirror://pypi/h/hyperlink/${name}.tar.gz";
sha256 = "06mgnxwjzx8hv34bifc7jvgxz21ixhk5s6xy2kd84hdrlbfvpbfx";
};
checkInputs = [ pytest ];
checkPhase = ''
py.test $out
'';
meta = with stdenv.lib; {
description = "A featureful, correct URL for Python";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ apeschar ];
};
}

View File

@ -8355,6 +8355,7 @@ in {
};
};
hyperlink = callPackage ../development/python-modules/hyperlink {};
zope_copy = buildPythonPackage rec {
name = "zope.copy-4.0.2";