0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

GitPython: 2.0.8 -> 2.1.9

Also moves GitPython into the newer python module folder structure.
This commit is contained in:
Benjamin Hipple 2018-05-12 10:52:04 -04:00
parent 318ce72a05
commit 5efce7c43d
2 changed files with 25 additions and 24 deletions

View file

@ -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;
};
}