From 54b42700a55ca197a344853636059ae8cebb5f38 Mon Sep 17 00:00:00 2001 From: natsukium Date: Tue, 18 Jul 2023 11:02:16 +0900 Subject: [PATCH 1/2] python310Packages.shap: 0.42.0 -> 0.42.1 Diff: https://github.com/slundberg/shap/compare/refs/tags/v0.42.0...v0.42.1 Changelog: https://github.com/slundberg/shap/releases/tag/v0.42.1 --- pkgs/development/python-modules/shap/default.nix | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/pkgs/development/python-modules/shap/default.nix b/pkgs/development/python-modules/shap/default.nix index 9284d645215b..9d0cf10338ba 100644 --- a/pkgs/development/python-modules/shap/default.nix +++ b/pkgs/development/python-modules/shap/default.nix @@ -1,7 +1,6 @@ { lib , buildPythonPackage , fetchFromGitHub -, fetchpatch , pytestCheckHook , pythonOlder , writeText @@ -30,7 +29,7 @@ buildPythonPackage rec { pname = "shap"; - version = "0.42.0"; + version = "0.42.1"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -39,17 +38,9 @@ buildPythonPackage rec { owner = "slundberg"; repo = "shap"; rev = "refs/tags/v${version}"; - hash = "sha256-VGlswr9ywHk4oKSmmAzEC7+E0V2XEFlg19zXVktUdhc="; + hash = "sha256-Ezq6WS6QnoM5uEfo2DgDAEo1HkQ1KjmfgIyVWh3RM94="; }; - patches = [ - (fetchpatch { - name = "fix-circular-import-error.patch"; - url = "https://github.com/slundberg/shap/commit/ce118526b19b4a206cf8b496c2cd2b215ef7a91b.patch"; - hash = "sha256-n2yFjFgc2VSFKb4ZJx775HblULWfnQSEnqjfPa8AOt0="; - }) - ]; - nativeBuildInputs = [ setuptools ]; From 43036c0dd09c6ac7869885f2acc75d1c494f0138 Mon Sep 17 00:00:00 2001 From: natsukium Date: Tue, 18 Jul 2023 11:07:10 +0900 Subject: [PATCH 2/2] python310Packages.shap: add natsukium as maintainer --- pkgs/development/python-modules/shap/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/shap/default.nix b/pkgs/development/python-modules/shap/default.nix index 9d0cf10338ba..a93cca6232fd 100644 --- a/pkgs/development/python-modules/shap/default.nix +++ b/pkgs/development/python-modules/shap/default.nix @@ -143,6 +143,6 @@ buildPythonPackage rec { homepage = "https://github.com/slundberg/shap"; changelog = "https://github.com/slundberg/shap/releases/tag/v${version}"; license = licenses.mit; - maintainers = with maintainers; [ evax ]; + maintainers = with maintainers; [ evax natsukium ]; }; }