blob: a2488a6214f60327e9a0ba0b1d5a565d1344970f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
lib,
buildPythonPackage,
fetchzip,
}:
buildPythonPackage rec {
version = "1.16";
format = "setuptools";
pname = "patch";
src = fetchzip {
url = "mirror://pypi/p/${pname}/${pname}-${version}.zip";
sha256 = "1nj55hvyvzax4lxq7vkyfbw91pianzr3hp7ka7j12pgjxccac50g";
stripRoot = false;
};
# No tests included in archive
doCheck = false;
meta = {
description = "Library to parse and apply unified diffs";
homepage = "https://github.com/techtonik/python-patch/";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.igsha ];
};
}
|