mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
buildPythonPackage: do not keep checkInputs
When tests are disabled, we do not want to pass checkInputs to stdenv.mkDerivation. This reduces the build requirements and, more importantly, helps cutting cycles.
This commit is contained in:
parent
eeeaba31f8
commit
97f67d1b5a
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ if disabled
|
|||
then throw "${name} not supported for interpreter ${python.executable}"
|
||||
else
|
||||
|
||||
python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled"] // {
|
||||
python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled" "checkInputs"] // {
|
||||
|
||||
name = namePrefix + name;
|
||||
|
||||
|
|
Loading…
Reference in a new issue