pythonPackages.patch: init at 1.16
This commit is contained in:
parent
210b3b3184
commit
5d83aaee96
1 changed files with 23 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue