30 lines
728 B
Nix
30 lines
728 B
Nix
|
import ./make-test-python.nix ({ pkgs, ...} : {
|
||
|
name = "postgis";
|
||
|
meta = with pkgs.stdenv.lib.maintainers; {
|
||
|
maintainers = [ lsix ];
|
||
|
};
|
||
|
|
||
|
nodes = {
|
||
|
master =
|
||
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.postgresql = let mypg = pkgs.postgresql_11; in {
|
||
|
enable = true;
|
||
|
package = mypg;
|
||
|
extraPlugins = with mypg.pkgs; [
|
||
|
postgis
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
start_all()
|
||
|
master.wait_for_unit("postgresql")
|
||
|
master.sleep(10) # Hopefully this is long enough!!
|
||
|
master.succeed("sudo -u postgres psql -c 'CREATE EXTENSION postgis;'")
|
||
|
master.succeed("sudo -u postgres psql -c 'CREATE EXTENSION postgis_topology;'")
|
||
|
'';
|
||
|
})
|