about summary refs log tree commit diff
path: root/pkgs/development/python-modules/apache-beam
diff options
context:
space:
mode:
authornatsukium <tomoya.otabi@gmail.com>2023-08-17 14:29:24 +0900
committernatsukium <tomoya.otabi@gmail.com>2023-08-17 14:29:24 +0900
commit728dff52cf312910cbdfa8aca41ee78aea5446da (patch)
tree61b63e23c8dd0fa37104b175c2d3bed7903038ac /pkgs/development/python-modules/apache-beam
parentebcaf19356e9fe57445059e7e93059d70ba583bc (diff)
python310Packages.apache-beam: mark as broken
apache-beam has no compatibility with pandas>=2
see https://github.com/apache/beam/issues/27221
Diffstat (limited to 'pkgs/development/python-modules/apache-beam')
-rw-r--r--pkgs/development/python-modules/apache-beam/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/apache-beam/default.nix b/pkgs/development/python-modules/apache-beam/default.nix
index c8bd564697021..92a9203a93f6b 100644
--- a/pkgs/development/python-modules/apache-beam/default.nix
+++ b/pkgs/development/python-modules/apache-beam/default.nix
@@ -209,5 +209,7 @@ buildPythonPackage rec {
     homepage = "https://beam.apache.org/";
     license = licenses.asl20;
     maintainers = with maintainers; [ ndl ];
+    # https://github.com/apache/beam/issues/27221
+    broken = lib.versionAtLeast pandas.version "2";
   };
 }