12 buildPythonPackage rec {
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
18 owner = "gitpython-developers";
21 sha256 = "sha256-RA+6JFXHUQoXGErV8+aYuJPsfXzNSZK3kTm6eMbQIss=";
26 src = ./hardcode-git-path.patch;
31 propagatedBuildInputs = [
34 ] ++ lib.optionals (pythonOlder "3.10") [
38 # Tests require a git repo
41 pythonImportsCheck = [ "git" ];
44 description = "Python Git Library";
45 homepage = "https://github.com/gitpython-developers/GitPython";
46 license = licenses.bsd3;
47 maintainers = with maintainers; [ fab ];