python gitdb: remove async input
async is not a requirement anymore of gitdb. With this change, it becomes possible to use GitPython with Python 3.
This commit is contained in:
parent
00f8071b2f
commit
f4fb1682bf
@ -4241,15 +4241,28 @@ let
|
|||||||
|
|
||||||
gitdb = buildPythonPackage rec {
|
gitdb = buildPythonPackage rec {
|
||||||
name = "gitdb-0.6.4";
|
name = "gitdb-0.6.4";
|
||||||
meta.maintainers = with maintainers; [ mornfall ];
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "https://pypi.python.org/packages/source/g/gitdb/${name}.tar.gz";
|
url = "https://pypi.python.org/packages/source/g/gitdb/${name}.tar.gz";
|
||||||
sha256 = "0n4n2c7rxph9vs2l6xlafyda5x1mdr8xy16r9s3jwnh3pqkvrsx3";
|
sha256 = "0n4n2c7rxph9vs2l6xlafyda5x1mdr8xy16r9s3jwnh3pqkvrsx3";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ smmap async ];
|
buildInputs = with self; [ nose ];
|
||||||
|
propagatedBuildInputs = with self; [ smmap ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
nosetests
|
||||||
|
'';
|
||||||
|
|
||||||
|
doCheck = false; # Bunch of tests fail because they need an actual git repo
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Git Object Database";
|
||||||
|
maintainers = with maintainers; [ mornfall ];
|
||||||
|
homepage = https://github.com/gitpython-developers/gitdb;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
GitPython = buildPythonPackage rec {
|
GitPython = buildPythonPackage rec {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user