python310Packages.pydeconz: 104 -> 105
[NixPkgs.git] / nixos / tests / web-apps / phylactery.nix
blobcf2689d2300d30f524d99e4e80da0642fa6b15d5
1 import ../make-test-python.nix ({ pkgs, lib, ... }: {
2   name = "phylactery";
4   nodes.machine = { ... }: {
5     services.phylactery = rec {
6       enable = true;
7       port = 8080;
8       library = "/tmp";
9     };
10   };
12   testScript = ''
13     start_all()
14     machine.wait_for_unit('phylactery')
15     machine.wait_for_open_port(8080)
16     machine.wait_until_succeeds('curl localhost:8080')
17   '';
19   meta.maintainers = with lib.maintainers; [ McSinyx ];