python312Packages.homematicip: 1.1.2 -> 1.1.3 (#356780)
[NixPkgs.git] / nixos / tests / komga.nix
blobd48d19bbbdd37cc8725c2aaddbbcfa989742dcbe
1 import ./make-test-python.nix ({ lib, ... }:
4   name = "komga";
5   meta.maintainers = with lib.maintainers; [ govanify ];
7   nodes.machine =
8     { pkgs, ... }:
9     { services.komga = {
10         enable = true;
11         port = 1234;
12       };
13     };
15   testScript = ''
16     machine.wait_for_unit("komga.service")
17     machine.wait_for_open_port(1234)
18     machine.succeed("curl --fail http://localhost:1234/")
19   '';