mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-14 22:04:27 +01:00
fc81ca6408
I'm happy to help maintain this package going forwards.
24 lines
446 B
Nix
24 lines
446 B
Nix
import ./make-test-python.nix ({ pkgs, ...} :
|
|
|
|
{
|
|
name = "mealie";
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ litchipi anoa ];
|
|
};
|
|
|
|
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")
|
|
'';
|
|
})
|