3
0
Fork 0
forked from mirrors/nixpkgs

apache-beam: patch out pyarrow constraint

This commit is contained in:
Phillip Cloud 2022-02-05 08:31:21 -05:00
parent c1998338b2
commit ca5bf5bd26
No known key found for this signature in database
GPG key ID: D908212070FD785E

View file

@ -60,7 +60,8 @@ buildPythonPackage rec {
# See https://github.com/NixOS/nixpkgs/issues/156957. # See https://github.com/NixOS/nixpkgs/issues/156957.
postPatch = '' postPatch = ''
substituteInPlace setup.py \ substituteInPlace setup.py \
--replace "typing-extensions>=3.7.0,<4" "typing-extensions" --replace "typing-extensions>=3.7.0,<4" "typing-extensions" \
--replace "pyarrow>=0.15.1,<7.0.0" "pyarrow"
''; '';
sourceRoot = "source/sdks/python"; sourceRoot = "source/sdks/python";