From dc0e1a68159f7e772f65529968efc7813cf3de70 Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Fri, 6 Jan 2023 15:25:31 +0100 Subject: [PATCH] python3Packages.shap: fix `pythonImportsCheck` typo Previously, the imports check wasn't executed due to a typo. --- 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 661c6622195..2f0660aafd5 100644 --- a/pkgs/development/python-modules/shap/default.nix +++ b/pkgs/development/python-modules/shap/default.nix @@ -130,7 +130,7 @@ buildPythonPackage rec { #pytestFlagsArray = ["-x" "-W" "ignore"]; # uncomment this to debug - pythonImportCheck = [ + pythonImportsCheck = [ "shap" "shap.explainers" "shap.explainers.other"