summary refs log tree commit diff
path: root/pkgs/development/python-modules/ghdiff.nix
blob: 1f14b661d53e51d09aa52f34985bd7dc481c5032 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 = licenses.mit;
    description = "Generate Github-style HTML for unified diffs.";
    maintainers = [ maintainers.mic92 ];
  };
}