diff options
author | Robert Hensing | 2021-05-08 17:25:34 +0200 |
---|---|---|
committer | Robert Hensing | 2021-05-09 03:04:03 +0200 |
commit | 75c4fc1c8bf1c4c453c2b7279d70dc058d0b60ba (patch) | |
tree | 326ffece28249033efca1d401cd965795d17f5c4 /nixos/lib | |
parent | 5d9dc70c2fc0e2bbf8375b1ef5c22df5606682ea (diff) |
nixos/testing-python.nix: Move makeWrapper to nativeBuildInputs
Diffstat (limited to 'nixos/lib')
-rw-r--r-- | nixos/lib/testing-python.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/lib/testing-python.nix b/nixos/lib/testing-python.nix index 679c31f3e354..7e87313e9639 100644 --- a/nixos/lib/testing-python.nix +++ b/nixos/lib/testing-python.nix @@ -158,7 +158,7 @@ rec { in lib.warnIf skipLint "Linting is disabled" (runCommand testDriverName { - buildInputs = [ makeWrapper ]; + nativeBuildInputs = [ makeWrapper ]; testScript = testScript'; preferLocalBuild = true; testName = name; |