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:
Frederik Rietdijk 2015-11-25 10:06:08 +01:00
parent 00f8071b2f
commit f4fb1682bf

View file

@ -4241,15 +4241,28 @@ let
gitdb = buildPythonPackage rec {
name = "gitdb-0.6.4";
meta.maintainers = with maintainers; [ mornfall ];
doCheck = false;
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/g/gitdb/${name}.tar.gz";
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 {