fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
33 lines
637 B
Nix
33 lines
637 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.";
|
|
mainProgram = "ghdiff";
|
|
maintainers = [ maintainers.mic92 ];
|
|
};
|
|
}
|