aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/GitPython/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/python-modules/GitPython/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/python-modules/GitPython/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/python-modules/GitPython/default.nix b/infra/libkookie/nixpkgs/pkgs/development/python-modules/GitPython/default.nix
new file mode 100644
index 000000000000..67ec5c2e4d1f
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/development/python-modules/GitPython/default.nix
@@ -0,0 +1,32 @@
+{ lib, buildPythonPackage, fetchPypi, isPy27, substituteAll, git, gitdb, mock, nose, ddt }:
+
+buildPythonPackage rec {
+ version = "3.1.7";
+ pname = "GitPython";
+ disabled = isPy27; # no longer supported
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "2db287d71a284e22e5c2846042d0602465c7434d910406990d5b74df4afb0858";
+ };
+
+ 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;
+ };
+}