nixosTests.buildbot: fix impure evaluation

zowoq 4ef91005 b5be7145

Changed files
+2 -7
nixos
tests
+2 -7
nixos/tests/buildbot.nix
···
# Test ensures buildbot master comes up correctly and workers can connect
-
{ system ? builtins.currentSystem,
-
config ? {},
-
pkgs ? import ../.. { inherit system config; }
-
}:
-
-
import ./make-test-python.nix {
+
import ./make-test-python.nix ({ pkgs, ... }: {
name = "buildbot";
nodes = {
···
'';
meta.maintainers = with pkgs.lib.maintainers; [ ];
-
} {}
+
})