16 lines
192 B
Nix
16 lines
192 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
|
||
|
let
|
||
|
shell = pkgs.mkShell {
|
||
|
buildInputs = with pkgs;
|
||
|
[
|
||
|
python3
|
||
|
postgresql
|
||
|
#python3Packages.regex
|
||
|
];
|
||
|
};
|
||
|
|
||
|
in
|
||
|
|
||
|
shell
|