pythonPackages.ghdiff: init at 0.4
This commit is contained in:
parent
f957ce45c4
commit
b9e0da457a
21
pkgs/development/python-modules/ghdiff.nix
Normal file
21
pkgs/development/python-modules/ghdiff.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -12082,6 +12082,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
ghdiff = callPackage ../development/python-modules/ghdiff.nix { };
|
||||
|
||||
gipc = buildPythonPackage rec {
|
||||
name = "gipc-0.5.0";
|
||||
disabled = !isPy26 && !isPy27;
|
||||
|
Loading…
x
Reference in New Issue
Block a user