python: Allow users to set nativeInstallCheckInputs and installCheckInputs

to make consistent with the rest of nixpkgs
This commit is contained in:
Ross Smyth
2025-09-02 14:00:28 -04:00
parent ab97ee6c67
commit 4241178a62
@@ -377,8 +377,8 @@ let
# Python packages don't have a checkPhase, only an installCheckPhase
doCheck = false;
doInstallCheck = attrs.doCheck or true;
nativeInstallCheckInputs = nativeCheckInputs;
installCheckInputs = checkInputs;
nativeInstallCheckInputs = nativeCheckInputs ++ attrs.nativeInstallCheckInputs or [ ];
installCheckInputs = checkInputs ++ attrs.installCheckInputs or [ ];
inherit dontWrapPythonPrograms;