Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python312Packages.shap: 0.45.1 -> 0.46.0

Diff: https://github.com/slundberg/shap/compare/refs/tags/v0.45.1...v0.46.0

Changelog: https://github.com/slundberg/shap/releases/tag/v0.46.0

+10 -6
+10 -6
pkgs/development/python-modules/shap/default.nix
··· 13 matplotlib, 14 numba, 15 numpy, 16 - oldest-supported-numpy, 17 opencv4, 18 pandas, 19 pyspark, ··· 31 32 buildPythonPackage rec { 33 pname = "shap"; 34 - version = "0.45.1"; 35 pyproject = true; 36 37 disabled = pythonOlder "3.8"; ··· 40 owner = "slundberg"; 41 repo = "shap"; 42 rev = "refs/tags/v${version}"; 43 - hash = "sha256-REMAubT9WRe0exfhO4UCLt3FFQHq4HApHnI6i2F/V1o="; 44 }; 45 46 - nativeBuildInputs = [ 47 - oldest-supported-numpy 48 setuptools 49 setuptools-scm 50 ]; 51 52 - propagatedBuildInputs = [ 53 cloudpickle 54 numba 55 numpy
··· 13 matplotlib, 14 numba, 15 numpy, 16 opencv4, 17 pandas, 18 pyspark, ··· 30 31 buildPythonPackage rec { 32 pname = "shap"; 33 + version = "0.46.0"; 34 pyproject = true; 35 36 disabled = pythonOlder "3.8"; ··· 39 owner = "slundberg"; 40 repo = "shap"; 41 rev = "refs/tags/v${version}"; 42 + hash = "sha256-qW36/Xw5oaYKmaMfE5euzkED9CKkjl2O55aO0OpCkfI="; 43 }; 44 45 + postPatch = '' 46 + substituteInPlace pyproject.toml \ 47 + --replace-fail "numpy>=2.0" "numpy" 48 + ''; 49 + 50 + build-system = [ 51 + numpy 52 setuptools 53 setuptools-scm 54 ]; 55 56 + dependencies = [ 57 cloudpickle 58 numba 59 numpy