add nix shell thingy
This commit is contained in:
parent
8258e5ab0a
commit
dbee0d65c2
1 changed files with 12 additions and 0 deletions
12
shell.nix
Normal file
12
shell.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
let
|
||||
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/b62d2a95c72fb068aecd374a7262b37ed92df82b.tar.gz") {};
|
||||
in pkgs.mkShell {
|
||||
packages = [
|
||||
(pkgs.python313.withPackages (python-pkgs: with python-pkgs; [
|
||||
# select Python packages here
|
||||
flask
|
||||
flask-sqlalchemy
|
||||
psycopg2
|
||||
]))
|
||||
];
|
||||
}
|
Loading…
Add table
Reference in a new issue