vetting-bot/shell.nix

19 lines
240 B
Nix

# Template
with import <nixpkgs> { };
mkShell {
nativeBuildInputs = [
direnv
python312Packages.psycopg2
python312Packages.aiohttp
poetry
postgresql_16_jit
];
NIX_ENFORCE_PURITY = true;
shellHook = ''
'';
}