python3Packages.spacy: fix build (#60276)

spaCy 2.0.18 requires an older version of wheel. Remove upper bound.
This commit is contained in:
Daniël de Kok 2019-04-26 20:47:32 +02:00 committed by Robert Schütz
parent 4c5aff0691
commit 58c473985c

View file

@ -31,7 +31,8 @@ buildPythonPackage rec {
prePatch = ''
substituteInPlace setup.py \
--replace "regex==" "regex>=" \
--replace "plac<1.0.0,>=0.9.6" "plac>=0.9.6"
--replace "plac<1.0.0,>=0.9.6" "plac>=0.9.6" \
--replace "wheel>=0.32.0,<0.33.0" "wheel>=0.32.0"
'';
propagatedBuildInputs = [