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:
parent
03d5611ae0
commit
3e60781f53
22
pkgs/development/python-modules/patch-ng/default.nix
Normal file
22
pkgs/development/python-modules/patch-ng/default.nix
Normal 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 ];
|
||||
};
|
||||
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user