about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPhillip Cloud <417981+cpcloud@users.noreply.github.com>2022-02-05 09:02:52 -0500
committerPhillip Cloud <417981+cpcloud@users.noreply.github.com>2022-02-06 15:00:53 -0500
commitbe83d5bb389dc3093b10c7f14530b43e35ede3ae (patch)
treed16d0e8d9ffe46a27782597df2a444a29bbc6cd1 /pkgs
parentca5bf5bd262cc29417fa1b871f34487afdc9d042 (diff)
apache-beam: mark as broken on 3.10
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/arrow-cpp/default.nix2
-rw-r--r--pkgs/development/python-modules/apache-beam/default.nix2
2 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/libraries/arrow-cpp/default.nix b/pkgs/development/libraries/arrow-cpp/default.nix
index c34c47a12626e..ea0f67ce8c7f5 100644
--- a/pkgs/development/libraries/arrow-cpp/default.nix
+++ b/pkgs/development/libraries/arrow-cpp/default.nix
@@ -161,7 +161,7 @@ stdenv.mkDerivation rec {
     "-DARROW_DATASET=ON"
     "-DARROW_ENGINE=ON"
     "-DARROW_FILESYSTEM=ON"
-    "-DARROW_FLIGHT_SQL=ON"
+    "-DARROW_FLIGHT_SQL=${if enableFlight then "ON" else "OFF"}"
     "-DARROW_IPC=ON"
     "-DARROW_JEMALLOC=${if enableJemalloc then "ON" else "OFF"}"
     "-DARROW_JSON=ON"
diff --git a/pkgs/development/python-modules/apache-beam/default.nix b/pkgs/development/python-modules/apache-beam/default.nix
index c2fe3e608cc51..2eeebaaea7f8c 100644
--- a/pkgs/development/python-modules/apache-beam/default.nix
+++ b/pkgs/development/python-modules/apache-beam/default.nix
@@ -29,6 +29,7 @@
 , pytest-xdist
 , pytestCheckHook
 , python
+, pythonAtLeast
 , python-dateutil
 , pytz
 , pyyaml
@@ -43,6 +44,7 @@
 buildPythonPackage rec {
   pname = "apache-beam";
   version = "2.35.0";
+  disabled = pythonAtLeast "3.10";
 
   src = fetchFromGitHub {
     owner = "apache";