From dbee0d65c23576a99ac6b98002bf8a1f14766579 Mon Sep 17 00:00:00 2001 From: nyx Date: Wed, 12 Mar 2025 22:39:18 -0500 Subject: [PATCH] add nix shell thingy --- shell.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..8ba2e7e --- /dev/null +++ b/shell.nix @@ -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 + ])) + ]; +} \ No newline at end of file