From 0a8de6215a75ad637ea1b2c4859a5dd4dd7aa0da Mon Sep 17 00:00:00 2001 From: Ed Braaten Date: Mon, 12 Jan 2026 06:03:59 -0800 Subject: [PATCH] Adding shell.nix so we can run python under NixOS for this project. --- shell.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..5627f92 --- /dev/null +++ b/shell.nix @@ -0,0 +1,13 @@ +# shell.nix +{ pkgs ? import {} }: + +pkgs.mkShell { + buildInputs = [ + (pkgs.python3.withPackages (ps: with ps; [ + numpy + openpyxl + pandas + ])) + ]; +} +