depot/third_party/nixpkgs/pkgs/development/python-modules/GitPython/default.nix
Default email 6ae7ad3cc5 Project import generated by Copybara.
GitOrigin-RevId: a322b32e9d74fb476944ff6cfb55833dc69cfaaa
2020-11-19 01:13:47 +01:00

32 lines
774 B
Nix

{ lib, buildPythonPackage, fetchPypi, isPy27, substituteAll, git, gitdb, mock, nose, ddt }:
buildPythonPackage rec {
version = "3.1.11";
pname = "GitPython";
disabled = isPy27; # no longer supported
src = fetchPypi {
inherit pname version;
sha256 = "befa4d101f91bad1b632df4308ec64555db684c360bd7d2130b4807d49ce86b8";
};
patches = [
(substituteAll {
src = ./hardcode-git-path.patch;
inherit git;
})
];
checkInputs = [ nose ] ++ lib.optional isPy27 mock;
propagatedBuildInputs = [ gitdb ddt ];
# Tests require a git repo
doCheck = false;
meta = {
description = "Python Git Library";
maintainers = [ ];
homepage = "https://github.com/gitpython-developers/GitPython";
license = lib.licenses.bsd3;
};
}