hyperlink: init at 17.3.0
This commit is contained in:
parent
eff07f381c
commit
cfda60042d
23
pkgs/development/python-modules/hyperlink/default.nix
Normal file
23
pkgs/development/python-modules/hyperlink/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -8355,6 +8355,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
hyperlink = callPackage ../development/python-modules/hyperlink {};
|
||||||
|
|
||||||
zope_copy = buildPythonPackage rec {
|
zope_copy = buildPythonPackage rec {
|
||||||
name = "zope.copy-4.0.2";
|
name = "zope.copy-4.0.2";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user