mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
aeb79caaf6
Signed-off-by: Litchi Pi <litchi.pi@proton.me>
24 lines
441 B
Nix
24 lines
441 B
Nix
import ./make-test-python.nix ({ pkgs, ...} :
|
|
|
|
{
|
|
name = "mealie";
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ litchipi ];
|
|
};
|
|
|
|
nodes = {
|
|
server = {
|
|
services.mealie = {
|
|
enable = true;
|
|
port = 9001;
|
|
};
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
start_all()
|
|
server.wait_for_unit("mealie.service")
|
|
server.wait_for_open_port(9001)
|
|
server.succeed("curl --fail http://localhost:9001")
|
|
'';
|
|
})
|