1 import ./make-test-python.nix ({ pkgs, ...} : {
3 meta = with pkgs.lib.maintainers; {
4 maintainers = [ lsix ];
12 services.postgresql = {
14 package = pkgs.postgresql;
15 extraPlugins = ps: with ps; [
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 postgis;'")
27 master.succeed("sudo -u postgres psql -c 'CREATE EXTENSION postgis_raster;'")
28 master.succeed("sudo -u postgres psql -c 'CREATE EXTENSION postgis_topology;'")