mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #58095 from Infinisil/fix/thinc
pythonPackages.thinc: Fix build
This commit is contained in:
commit
d585794021
1 changed files with 4 additions and 1 deletions
|
@ -63,7 +63,10 @@ buildPythonPackage rec {
|
|||
substituteInPlace setup.py \
|
||||
--replace "pathlib==1.0.1" "pathlib>=1.0.0,<2.0.0" \
|
||||
--replace "plac>=0.9.6,<1.0.0" "plac>=0.9.6" \
|
||||
--replace "msgpack-numpy<0.4.4" "msgpack-numpy"
|
||||
--replace "msgpack-numpy<0.4.4" "msgpack-numpy" \
|
||||
--replace "wheel>=0.32.0,<0.33.0" "wheel" \
|
||||
--replace "wrapt>=1.10.0,<1.11.0" "wrapt" \
|
||||
--replace "msgpack>=0.5.6,<0.6.0" "msgpack"
|
||||
'';
|
||||
|
||||
# Cannot find cython modules.
|
||||
|
|
Loading…
Reference in a new issue