summary refs log tree commit diff
path: root/pkgs/development/python-modules/GitPython
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2018-05-12 10:52:04 -0400
committerBenjamin Hipple <bhipple@protonmail.com>2018-05-13 11:33:42 -0400
commit5efce7c43d269c7e95a17c289ce6ca146341cfcf (patch)
tree96a06c0cecd652698616960856deb50a85067ca6 /pkgs/development/python-modules/GitPython
parent318ce72a050a32ba2d0f5ce1192ae7c039e9c323 (diff)
downloadnixpkgs-5efce7c43d269c7e95a17c289ce6ca146341cfcf.tar
nixpkgs-5efce7c43d269c7e95a17c289ce6ca146341cfcf.tar.gz
nixpkgs-5efce7c43d269c7e95a17c289ce6ca146341cfcf.tar.bz2
nixpkgs-5efce7c43d269c7e95a17c289ce6ca146341cfcf.tar.lz
nixpkgs-5efce7c43d269c7e95a17c289ce6ca146341cfcf.tar.xz
nixpkgs-5efce7c43d269c7e95a17c289ce6ca146341cfcf.tar.zst
nixpkgs-5efce7c43d269c7e95a17c289ce6ca146341cfcf.zip
GitPython: 2.0.8 -> 2.1.9
Also moves GitPython into the newer python module folder structure.
Diffstat (limited to 'pkgs/development/python-modules/GitPython')
-rw-r--r--pkgs/development/python-modules/GitPython/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/GitPython/default.nix b/pkgs/development/python-modules/GitPython/default.nix
new file mode 100644
index 00000000000..c2f3706923a
--- /dev/null
+++ b/pkgs/development/python-modules/GitPython/default.nix
@@ -0,0 +1,24 @@
+{ lib, buildPythonPackage, fetchPypi, gitdb2, mock, nose, ddt }:
+
+buildPythonPackage rec {
+  version = "2.1.9";
+  pname = "GitPython";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0a9in1jfv9ssxhckl6sasw45bhm762y2r5ikgb2pk2g8yqdc6z64";
+  };
+
+  checkInputs = [ mock nose ddt ];
+  propagatedBuildInputs = [ gitdb2 ];
+
+  # Tests require a git repo
+  doCheck = false;
+
+  meta = {
+    description = "Python Git Library";
+    maintainers = [ ];
+    homepage = https://github.com/gitpython-developers/GitPython;
+    license = lib.licenses.bsd3;
+  };
+}