mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
24 lines
540 B
Nix
24 lines
540 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.17.4"; # note: `conan` package may require a hardcoded one
|
|
format = "setuptools";
|
|
pname = "patch-ng";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1kja1nn08w0k8k6j4kad48k581hh9drvjjb8x60v9j13sxdvqyk2";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Library to parse and apply unified diffs.";
|
|
homepage = "https://github.com/conan-io/python-patch";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ HaoZeke ];
|
|
};
|
|
|
|
}
|