GitPython: 2.0.8 -> 2.1.9
Also moves GitPython into the newer python module folder structure.
This commit is contained in:
parent
318ce72a05
commit
5efce7c43d
24
pkgs/development/python-modules/GitPython/default.nix
Normal file
24
pkgs/development/python-modules/GitPython/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -2824,30 +2824,7 @@ in {
|
||||
|
||||
gitdb2 = callPackage ../development/python-modules/gitdb2 { };
|
||||
|
||||
GitPython = buildPythonPackage rec {
|
||||
version = "2.0.8";
|
||||
name = "GitPython-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/G/GitPython/GitPython-${version}.tar.gz";
|
||||
sha256 = "7c03d1130f903aafba6ae5b89ccf8eb433a995cd3120cbb781370e53fc4eb222";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ mock nose ];
|
||||
propagatedBuildInputs = with self; [ gitdb ];
|
||||
|
||||
# All tests error with
|
||||
# InvalidGitRepositoryError: /tmp/nix-build-python2.7-GitPython-1.0.1.drv-0/GitPython-1.0.1
|
||||
# Maybe due to being in a chroot?
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Python Git Library";
|
||||
maintainers = with maintainers; [ ];
|
||||
homepage = https://github.com/gitpython-developers/GitPython;
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
};
|
||||
GitPython = callPackage ../development/python-modules/GitPython { };
|
||||
|
||||
git-annex-adapter = callPackage ../development/python-modules/git-annex-adapter {
|
||||
inherit (pkgs.gitAndTools) git-annex;
|
||||
|
Loading…
Reference in New Issue
Block a user