diff options
| author | John Ericson <John.Ericson@Obsidian.Systems> | 2018-05-22 13:37:32 -0400 |
|---|---|---|
| committer | John Ericson <John.Ericson@Obsidian.Systems> | 2018-05-22 13:37:32 -0400 |
| commit | 2e903444d01655552ecb2eebcd3c65e8164bd1e4 (patch) | |
| tree | 09511b361bd37ab58dd3225d56427f98d077bda3 /pkgs/development/python-modules/GitPython | |
| parent | 9247ce46f187cf55de4d9cca50ccd5b954dc2d55 (diff) | |
| parent | afc439d57b3866cb499fe68b94f969079aba7963 (diff) | |
Merge branch 'binutils-always-patch' into ios-mini-staging
Diffstat (limited to 'pkgs/development/python-modules/GitPython')
| -rw-r--r-- | pkgs/development/python-modules/GitPython/default.nix | 24 |
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 000000000000..c2f3706923a3 --- /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; + }; +} |
