snac2: 2.68 -> 2.70 (#379043)
[NixPkgs.git] / pkgs / development / python-modules / patch-ng / default.nix
blobcf0d81c7bd9ea9348684bfb11db15cc8d3690341
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   version = "1.18.1"; # note: `conan` package may require a hardcoded one
9   format = "setuptools";
10   pname = "patch-ng";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "sha256-Uv1G7kb2yGZ2kmgsH9cTTtxlotLQhOvsHSlaYIf8ApE=";
15   };
17   meta = with lib; {
18     description = "Library to parse and apply unified diffs";
19     homepage = "https://github.com/conan-io/python-patch";
20     license = licenses.mit;
21     maintainers = with maintainers; [ HaoZeke ];
22   };