pythonPackages.patch: init at 1.16

This commit is contained in:
Igor Sharonov 2016-10-27 22:37:13 +03:00
parent 210b3b3184
commit 5d83aaee96

View file

@ -17589,6 +17589,29 @@ in modules // {
};
};
patch = buildPythonPackage rec {
name = "${pname}-${version}";
version = "1.16";
pname = "patch";
src = pkgs.fetchzip {
url = "mirror://pypi/p/${pname}/${name}.zip";
sha256 = "1nj55hvyvzax4lxq7vkyfbw91pianzr3hp7ka7j12pgjxccac50g";
stripRoot = false;
};
# No tests included in archive
doCheck = false;
meta = {
description = "A library to parse and apply unified diffs";
homepage = https://github.com/techtonik/python-patch/;
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.igsha ];
};
};
pathos = buildPythonPackage rec {
name = "pathos-${version}";
version = "0.2.0";