apache-beam: mark as broken on 3.10

This commit is contained in:
Phillip Cloud 2022-02-05 09:02:52 -05:00
parent ca5bf5bd26
commit be83d5bb38
No known key found for this signature in database
GPG Key ID: D908212070FD785E
2 changed files with 3 additions and 1 deletions

View File

@ -161,7 +161,7 @@ stdenv.mkDerivation rec {
"-DARROW_DATASET=ON" "-DARROW_DATASET=ON"
"-DARROW_ENGINE=ON" "-DARROW_ENGINE=ON"
"-DARROW_FILESYSTEM=ON" "-DARROW_FILESYSTEM=ON"
"-DARROW_FLIGHT_SQL=ON" "-DARROW_FLIGHT_SQL=${if enableFlight then "ON" else "OFF"}"
"-DARROW_IPC=ON" "-DARROW_IPC=ON"
"-DARROW_JEMALLOC=${if enableJemalloc then "ON" else "OFF"}" "-DARROW_JEMALLOC=${if enableJemalloc then "ON" else "OFF"}"
"-DARROW_JSON=ON" "-DARROW_JSON=ON"

View File

@ -29,6 +29,7 @@
, pytest-xdist , pytest-xdist
, pytestCheckHook , pytestCheckHook
, python , python
, pythonAtLeast
, python-dateutil , python-dateutil
, pytz , pytz
, pyyaml , pyyaml
@ -43,6 +44,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "apache-beam"; pname = "apache-beam";
version = "2.35.0"; version = "2.35.0";
disabled = pythonAtLeast "3.10";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "apache"; owner = "apache";