python3Packages.jedi: loosen parso bounds

This commit is contained in:
Jonathan Ringer 2020-08-16 13:04:04 -07:00
parent 4e1b2ec50a
commit 12f1e4f628
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -13,6 +13,12 @@ buildPythonPackage rec {
propagatedBuildInputs = [ parso ];
# remove next bump, >=0.17.2, already fixed in master
prePatch = ''
substituteInPlace requirements.txt \
--replace "parso>=0.7.0,<0.8.0" "parso"
'';
checkPhase = ''
LC_ALL="en_US.UTF-8" py.test test
'';