nixpkgs/pkgs/development/python-modules/ghdiff/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

24 lines
615 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 ];
};
}