From be83d5bb389dc3093b10c7f14530b43e35ede3ae Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Sat, 5 Feb 2022 09:02:52 -0500 Subject: apache-beam: mark as broken on 3.10 --- pkgs/development/libraries/arrow-cpp/default.nix | 2 +- pkgs/development/python-modules/apache-beam/default.nix | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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"; -- cgit 1.4.1