Files
nixpkgs/pkgs/development/python-modules/ghdiff/default.nix
T
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
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
2023-12-07 17:46:49 +01:00

24 lines
587 B
Nix

{ lib, buildPythonPackage, fetchPypi
, zope_testrunner, six, chardet}:
buildPythonPackage rec {
pname = "ghdiff";
version = "0.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "17mdhi2sq9017nq8rkjhhc87djpi5z99xiil0xz17dyplr7nmkqk";
};
nativeCheckInputs = [ zope_testrunner ];
propagatedBuildInputs = [ six chardet ];
meta = with lib; {
homepage = "https://github.com/kilink/ghdiff";
license = licenses.mit;
description = "Generate Github-style HTML for unified diffs.";
maintainers = [ maintainers.mic92 ];
};
}