Adding shell.nix so we can run python under NixOS for

this project.
This commit is contained in:
Ed Braaten 2026-01-12 06:03:59 -08:00
parent 84bc0ec7db
commit 0a8de6215a
No known key found for this signature in database
GPG key ID: 11743CE9834B8FA6

13
shell.nix Normal file
View file

@ -0,0 +1,13 @@
# shell.nix
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
(pkgs.python3.withPackages (ps: with ps; [
numpy
openpyxl
pandas
]))
];
}