about summary refs log tree commit diff
path: root/pkgs/development/python-modules/apache-beam
diff options
context:
space:
mode:
authorPhillip Cloud <417981+cpcloud@users.noreply.github.com>2022-02-05 08:31:21 -0500
committerPhillip Cloud <417981+cpcloud@users.noreply.github.com>2022-02-06 15:00:51 -0500
commitca5bf5bd262cc29417fa1b871f34487afdc9d042 (patch)
tree03f8d2a85e0b8424adb4cfdd2484134e9d79c047 /pkgs/development/python-modules/apache-beam
parentc1998338b23f1b8713ebaf4ca82e521fde66b3ff (diff)
apache-beam: patch out pyarrow constraint
Diffstat (limited to 'pkgs/development/python-modules/apache-beam')
-rw-r--r--pkgs/development/python-modules/apache-beam/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/apache-beam/default.nix b/pkgs/development/python-modules/apache-beam/default.nix
index f3e47bfc90107..c2fe3e608cc51 100644
--- a/pkgs/development/python-modules/apache-beam/default.nix
+++ b/pkgs/development/python-modules/apache-beam/default.nix
@@ -60,7 +60,8 @@ buildPythonPackage rec {
   # See https://github.com/NixOS/nixpkgs/issues/156957.
   postPatch = ''
     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";