2019-01-24 09:27:11 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy27, substituteAll, git, gitdb2, mock, nose, ddt }:
|
2018-05-12 15:52:04 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-10-24 07:47:22 +01:00
|
|
|
version = "3.0.4";
|
2018-05-12 15:52:04 +01:00
|
|
|
pname = "GitPython";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 07:47:22 +01:00
|
|
|
sha256 = "3237caca1139d0a7aa072f6735f5fd2520de52195e0fa1d8b83a9b212a2498b2";
|
2018-05-12 15:52:04 +01: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;
|
|
|
|
propagatedBuildInputs = [ gitdb2 ddt ];
|
2018-05-12 15:52:04 +01:00
|
|
|
|
|
|
|
# Tests require a git repo
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Python Git Library";
|
|
|
|
maintainers = [ ];
|
|
|
|
homepage = https://github.com/gitpython-developers/GitPython;
|
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|