python312Packages.homematicip: 1.1.2 -> 1.1.3 (#356780)
[NixPkgs.git] / nixos / tests / chromadb.nix
blobbe04d10e74de03bafd886abf0239df25fd517ad6
1 { lib, pkgs, ... }:
3 let
4   lib = pkgs.lib;
6 in
8   name = "chromadb";
9   meta.maintainers = [ lib.maintainers.drupol ];
11   nodes = {
12     machine =
13       { pkgs, ... }:
14       {
15         services.chromadb = {
16           enable = true;
17         };
18       };
19   };
21   testScript = ''
22     machine.start()
23     machine.wait_for_unit("chromadb.service")
24     machine.wait_for_open_port(8000)
25   '';