python3Packages.gitdb: allow never version smmap

Let's hope nothing breaks
This commit is contained in:
Frederik Rietdijk 2021-03-24 14:00:13 +01:00
parent b8f2632dbc
commit 99d360177d

View file

@ -17,6 +17,10 @@ buildPythonPackage rec {
propagatedBuildInputs = [ smmap ];
postPatch = ''
substituteInPlace setup.py --replace ",<4" ""
'';
# Bunch of tests fail because they need an actual git repo
doCheck = false;