summary refs log tree commit diff
path: root/pkgs/development/python-modules/GitPython/default.nix
blob: 89b941c34fc220f09ba90e8f9e322134c67c663a (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
{ lib, buildPythonPackage, fetchPypi, git, gitdb2, mock, nose, ddt }:

buildPythonPackage rec {
  version = "2.1.9";
  pname = "GitPython";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0a9in1jfv9ssxhckl6sasw45bhm762y2r5ikgb2pk2g8yqdc6z64";
  };

  checkInputs = [ mock nose ddt ];
  propagatedBuildInputs = [ gitdb2 ];

  postPatch = ''
    sed -i "s|^refresh()$|refresh(path='${git}/bin/git')|" git/__init__.py
  '';

  # Tests require a git repo
  doCheck = false;

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