about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/gitdb/default.nix
blob: a5fa115781461449eee07bbf0b8c5bdccf1752fd (plain) (blame)
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
, smmap
, isPy3k
}:

buildPythonPackage rec {
  pname = "gitdb";
  version = "4.0.7";
  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "96bf5c08b157a666fec41129e6d327235284cca4c81e92109260f353ba138005";
  };

  propagatedBuildInputs = [ smmap ];

  postPatch = ''
    substituteInPlace setup.py --replace ",<4" ""
  '';

  # Bunch of tests fail because they need an actual git repo
  doCheck = false;

  meta = {
    description = "Git Object Database";
    maintainers = [ ];
    homepage = "https://github.com/gitpython-developers/gitdb";
    license = lib.licenses.bsd3;
  };
}