20 lines
394 B
Nix
20 lines
394 B
Nix
|
import ./make-test-python.nix ({ lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
name = "jackett";
|
||
|
meta.maintainers = with maintainers; [ etu ];
|
||
|
|
||
|
nodes.machine =
|
||
|
{ pkgs, ... }:
|
||
|
{ services.jackett.enable = true; };
|
||
|
|
||
|
testScript = ''
|
||
|
machine.start()
|
||
|
machine.wait_for_unit("jackett.service")
|
||
|
machine.wait_for_open_port(9117)
|
||
|
machine.succeed("curl --fail http://localhost:9117/")
|
||
|
'';
|
||
|
})
|