chan-delorean/shell.nix

16 lines
192 B
Nix
Raw Normal View History

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