python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / tests / komga.nix
blob02db50ef25f7256ce645cd78282110031b6e56f8
1 import ./make-test-python.nix ({ lib, ... }:
3 with lib;
6   name = "komga";
7   meta.maintainers = with maintainers; [ govanify ];
9   nodes.machine =
10     { pkgs, ... }:
11     { services.komga = {
12         enable = true;
13         port = 1234;
14       };
15     };
17   testScript = ''
18     machine.wait_for_unit("komga.service")
19     machine.wait_for_open_port(1234)
20     machine.succeed("curl --fail http://localhost:1234/")
21   '';