From 1c5e5f4dffd8b4084cd6f45df28c7aaed1ce9be3 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 27 Feb 2023 12:08:00 +0100 Subject: [PATCH] python310Packages.shap: mark as broken No support for scikit-learn > 1.2 https://github.com/slundberg/shap/issues/2866 --- pkgs/development/python-modules/shap/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/shap/default.nix b/pkgs/development/python-modules/shap/default.nix index fa79b9e028db..a7c9b139ac5c 100644 --- a/pkgs/development/python-modules/shap/default.nix +++ b/pkgs/development/python-modules/shap/default.nix @@ -150,5 +150,8 @@ buildPythonPackage rec { license = licenses.mit; maintainers = with maintainers; [ evax ]; platforms = platforms.unix; + # No support for scikit-learn > 1.2 + # https://github.com/slundberg/shap/issues/2866 + broken = true; }; }