My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/ghdiff/default.nix

22 lines
556 B

{ lib, buildPythonPackage, fetchPypi
, zope_testrunner, six, chardet}:
buildPythonPackage rec {
pname = "ghdiff";
version = "0.4";
src = fetchPypi {
inherit pname version;
sha256 = "17mdhi2sq9017nq8rkjhhc87djpi5z99xiil0xz17dyplr7nmkqk";
};
checkInputs = [ 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 ];
};
}