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_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"

View file

@ -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";