treewide: switch to nativeCheckInputs

checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
This commit is contained in:
Guillaume Girol
2023-01-21 12:00:00 +00:00
parent 25193e2732
commit 33afbf39f6
4183 changed files with 4228 additions and 4228 deletions
@@ -28,7 +28,7 @@ buildPythonPackage rec {
# to force it a little.
pipInstallFlags = [ "--ignore-installed" ];
checkInputs = [ mock scripttest virtualenv pretend pytest ];
nativeCheckInputs = [ mock scripttest virtualenv pretend pytest ];
# Pip wants pytest, but tests are not distributed
doCheck = false;