pythonPackages.ghdiff: init at 0.4

This commit is contained in:
Jörg Thalheim 2017-01-14 00:12:03 +01:00
parent f957ce45c4
commit b9e0da457a
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, buildPythonPackage, fetchurl
, zope_testrunner, six, chardet}:
buildPythonPackage rec {
name = "ghdiff-0.4";
src = fetchurl {
url = "mirror://pypi/g/ghdiff/${name}.tar.gz";
sha256 = "17mdhi2sq9017nq8rkjhhc87djpi5z99xiil0xz17dyplr7nmkqk";
};
buildInputs = [ zope_testrunner ];
propagatedBuildInputs = [ six chardet ];
meta = with stdenv.lib; {
homepage = https://github.com/kilink/ghdiff;
license = license.mit;
description = "Generate Github-style HTML for unified diffs.";
maintainers = [ maintainers.mic92 ];
};
}

View File

@ -12082,6 +12082,8 @@ in {
};
};
ghdiff = callPackage ../development/python-modules/ghdiff.nix { };
gipc = buildPythonPackage rec {
name = "gipc-0.5.0";
disabled = !isPy26 && !isPy27;