2020-03-14 16:00:41 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy27, substituteAll, git, gitdb, mock, nose, ddt }:
|
2018-05-12 14:52:04 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2020-03-14 16:02:40 +00:00
|
|
|
version = "3.1.0";
|
2018-05-12 14:52:04 +00:00
|
|
|
pname = "GitPython";
|
2019-10-26 22:40:15 +00:00
|
|
|
disabled = isPy27; # no longer supported
|
2018-05-12 14:52:04 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-03-14 16:02:40 +00:00
|
|
|
sha256 = "1jzllsy9lwc9yibccgv7h9naxisazx2n3zmpy21c8n5xhysw69p4";
|
2018-05-12 14:52:04 +00:00
|
|
|
};
|
|
|
|
|
2019-01-24 09:09:20 +00:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./hardcode-git-path.patch;
|
|
|
|
inherit git;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2019-01-24 09:27:11 +00:00
|
|
|
checkInputs = [ nose ] ++ lib.optional isPy27 mock;
|
2020-03-14 16:00:41 +00:00
|
|
|
propagatedBuildInputs = [ gitdb ddt ];
|
2018-05-12 14:52:04 +00:00
|
|
|
|
|
|
|
# Tests require a git repo
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Python Git Library";
|
|
|
|
maintainers = [ ];
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/gitpython-developers/GitPython";
|
2018-05-12 14:52:04 +00:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|