python: Allow users to set nativeInstallCheckInputs and installCheckInputs
to make consistent with the rest of nixpkgs
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user