From 0a3ce757a8e45abdc89142077addeb7cd7ac6556 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 15 Sep 2025 23:43:18 +0200 Subject: [PATCH] python3Packages.cleanlab: mark as broken (incompatible with datasets 4.0.0) --- pkgs/development/python-modules/cleanlab/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/cleanlab/default.nix b/pkgs/development/python-modules/cleanlab/default.nix index b2cb9fe03e30..fc66e6ffbbfa 100644 --- a/pkgs/development/python-modules/cleanlab/default.nix +++ b/pkgs/development/python-modules/cleanlab/default.nix @@ -114,5 +114,9 @@ buildPythonPackage rec { changelog = "https://github.com/cleanlab/cleanlab/releases/tag/v${version}"; license = lib.licenses.agpl3Only; maintainers = with lib.maintainers; [ happysalada ]; + # cleanlab is incompatible with datasets>=4.0.0 + # cleanlab/datalab/internal/data.py:313: AssertionError + # https://github.com/cleanlab/cleanlab/issues/1244 + broken = lib.versionAtLeast datasets.version "4.0.0"; }; }