mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
146fa6b114
Removed jamiemagee from maintainers. Added myself as maintainer.
14 lines
415 B
Nix
14 lines
415 B
Nix
import ./make-test-python.nix ({ lib, ... }:
|
|
{
|
|
name = "nzbhydra2";
|
|
meta.maintainers = with lib.maintainers; [ matteopacini ];
|
|
|
|
nodes.machine = { pkgs, ... }: { services.nzbhydra2.enable = true; };
|
|
|
|
testScript = ''
|
|
machine.start()
|
|
machine.wait_for_unit("nzbhydra2.service")
|
|
machine.wait_for_open_port(5076)
|
|
machine.succeed("curl --fail http://localhost:5076/")
|
|
'';
|
|
})
|