blob: 5b114e81d77440a40fac826976e37f54ae8fdf0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
version = "1.18.1"; # note: `conan` package may require a hardcoded one
format = "setuptools";
pname = "patch-ng";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Uv1G7kb2yGZ2kmgsH9cTTtxlotLQhOvsHSlaYIf8ApE=";
};
meta = {
description = "Library to parse and apply unified diffs";
homepage = "https://github.com/conan-io/python-patch";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ HaoZeke ];
};
}
|