pythonPackages.patch-ng: Init at 1.17.2.

Newer versions of `conan` need it.

Adding @HaoZeke as maintainer (is Conan maintainer).
This commit is contained in:
Niklas Hambüchen 2020-03-22 16:33:40 +01:00
parent 03d5611ae0
commit 3e60781f53
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv
, buildPythonPackage
, fetchurl
}:
buildPythonPackage rec {
version = "1.17.2"; # note: `conan` package may require a hardcoded one
pname = "patch-ng";
src = fetchurl {
url = "mirror://pypi/p/${pname}/${pname}-${version}.tar.gz";
sha256 = "02nadk70sk51liv0qav88kx8rzfdjc1x52023zayanz44kkcjl2i";
};
meta = with stdenv.lib; {
description = "Library to parse and apply unified diffs.";
homepage = "https://github.com/conan-io/python-patch";
license = licenses.mit;
maintainers = with maintainers; [ HaoZeke ];
};
}

View file

@ -4764,6 +4764,8 @@ in {
patch = callPackage ../development/python-modules/patch { };
patch-ng = callPackage ../development/python-modules/patch-ng { };
pathos = callPackage ../development/python-modules/pathos { };
patsy = callPackage ../development/python-modules/patsy { };