repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python312Packages.homematicip: 1.1.2 -> 1.1.3 (#356780)
[NixPkgs.git]
/
nixos
/
tests
/
chromadb.nix
blob
be04d10e74de03bafd886abf0239df25fd517ad6
1
{ lib, pkgs, ... }:
2
3
let
4
lib = pkgs.lib;
5
6
in
7
{
8
name = "chromadb";
9
meta.maintainers = [ lib.maintainers.drupol ];
10
11
nodes = {
12
machine =
13
{ pkgs, ... }:
14
{
15
services.chromadb = {
16
enable = true;
17
};
18
};
19
};
20
21
testScript = ''
22
machine.start()
23
machine.wait_for_unit("chromadb.service")
24
machine.wait_for_open_port(8000)
25
'';
26
}