python3Packages.shap: 0.46.0 -> 0.48.0

https://github.com/slundberg/shap/releases/tag/v0.48.0

This commit was automatically generated using update-python-libraries.

Changed files
+6 -3
pkgs
development
python-modules
+6 -3
pkgs/development/python-modules/shap/default.nix
···
writeText,
catboost,
cloudpickle,
+
cython,
ipython,
lightgbm,
lime,
···
buildPythonPackage rec {
pname = "shap";
-
version = "0.46.0";
+
version = "0.48.0";
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "slundberg";
repo = "shap";
tag = "v${version}";
-
hash = "sha256-qW36/Xw5oaYKmaMfE5euzkED9CKkjl2O55aO0OpCkfI=";
+
hash = "sha256-eWZhyrFpEFlmTFPTHZng9V+uMRMXDVzFdgrqIzRQTws=";
};
postPatch = ''
substituteInPlace pyproject.toml \
+
--replace-fail "cython>=3.0.11" cython \
--replace-fail "numpy>=2.0" "numpy"
'';
build-system = [
+
cython
numpy
setuptools
setuptools-scm
···
meta = with lib; {
description = "Unified approach to explain the output of any machine learning model";
homepage = "https://github.com/slundberg/shap";
-
changelog = "https://github.com/slundberg/shap/releases/tag/v${version}";
+
changelog = "https://github.com/slundberg/shap/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [
evax