mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
22 lines
393 B
Nix
22 lines
393 B
Nix
|
import ./make-test-python.nix ({ pkgs, lib, ... }:
|
||
|
{
|
||
|
name = "photonvision";
|
||
|
|
||
|
nodes = {
|
||
|
machine = { pkgs, ... }: {
|
||
|
services.photonvision = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
start_all()
|
||
|
machine.wait_for_unit("photonvision.service")
|
||
|
machine.wait_for_open_port(5800)
|
||
|
'';
|
||
|
|
||
|
meta.maintainers = with lib.maintainers; [ max-niederman ];
|
||
|
})
|
||
|
|