5 import ./make-test-python.nix ({ pkgs, ... }: {
10 services.podgrab.enable = true;
13 customized = { ... }: {
24 default.wait_for_unit("podgrab")
25 default.wait_for_open_port(${toString defaultPort})
26 default.succeed("curl --fail http://localhost:${toString defaultPort}")
28 customized.wait_for_unit("podgrab")
29 customized.wait_for_open_port(${toString customPort})
30 customized.succeed("curl --fail http://localhost:${toString customPort}")
33 meta.maintainers = with pkgs.lib.maintainers; [ ambroisie ];