ares-scripts/shell.nix

14 lines
187 B
Nix
Raw Normal View History

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