apache-beam: mark as broken on 3.10
This commit is contained in:
parent
ca5bf5bd26
commit
be83d5bb38
2 changed files with 3 additions and 1 deletions
|
@ -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"
|
||||||
|
|
|
@ -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";
|
||||||
|
|
Loading…
Reference in a new issue