nixosTests.buildbot: fix impure evaluation

zowoq 4ef91005 b5be7145

+2 -7
+2 -7
nixos/tests/buildbot.nix
··· 1 # Test ensures buildbot master comes up correctly and workers can connect 2 3 - { system ? builtins.currentSystem, 4 - config ? {}, 5 - pkgs ? import ../.. { inherit system config; } 6 - }: 7 - 8 - import ./make-test-python.nix { 9 name = "buildbot"; 10 11 nodes = { ··· 110 ''; 111 112 meta.maintainers = with pkgs.lib.maintainers; [ ]; 113 - } {}
··· 1 # Test ensures buildbot master comes up correctly and workers can connect 2 3 + import ./make-test-python.nix ({ pkgs, ... }: { 4 name = "buildbot"; 5 6 nodes = { ··· 105 ''; 106 107 meta.maintainers = with pkgs.lib.maintainers; [ ]; 108 + })