about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-11-07 13:04:50 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-06-03 11:03:31 -0700
commit3edde6562e19698da69a499881e0a2e4f5a497a2 (patch)
tree72f5322d4a0504bb9081fb4c4d54a36462e3c1a9 /nixos/tests
parent049bbd281b619bbb198cc2569db06bf8d6e42ba0 (diff)
make-test-python: disallow aliases
When importing Nixpkgs within Nixpkgs, we should not consider aliases
to ensure we don't rely on them internally.

There are probably more places that need to be converted.
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/make-test-python.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/make-test-python.nix b/nixos/tests/make-test-python.nix
index 89897fe7e61b2..7a96f538d8d7a 100644
--- a/nixos/tests/make-test-python.nix
+++ b/nixos/tests/make-test-python.nix
@@ -1,6 +1,6 @@
 f: {
   system ? builtins.currentSystem,
-  pkgs ? import ../.. { inherit system; config = {}; },
+  pkgs ? import ../.. { inherit system; },
   ...
 } @ args: