1 import ./make-test-python.nix ({ pkgs, ...} : {
3 meta = with pkgs.lib.maintainers; {
4 maintainers = [ lsix ]; # TODO: Who's the maintener now?
12 services.postgresql = let mypg = pkgs.postgresql_15; in {
15 extraPlugins = with mypg.pkgs; [
24 master.wait_for_unit("postgresql")
25 master.sleep(10) # Hopefully this is long enough!!
26 master.succeed("sudo -u postgres psql -c 'CREATE EXTENSION datasketches;'")
27 master.succeed("sudo -u postgres psql -c 'SELECT hll_sketch_to_string(hll_sketch_build(1));'")