{ pkgs ? import {} }: pkgs.mkShell { buildInputs = with pkgs; [ gnumake python313 # Specify the Python version (adjust if needed) python313Packages.flask python313Packages.pyyaml python313Packages.psycopg osm2pgsql wget ]; shellHook = '' # Runs when starting shell ''; }