summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/ghdiff/default.nix
blob: f200f0e17e5cb0a7ac392c072bfff2ba8d845b27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  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 = {
    homepage = "https://github.com/kilink/ghdiff";
    license = lib.licenses.mit;
    description = "Generate Github-style HTML for unified diffs";
    mainProgram = "ghdiff";
    maintainers = [ lib.maintainers.mic92 ];
  };
}