projectile-simulation/shell.nix

10 lines
174 B
Nix
Raw Normal View History

2023-10-07 20:53:53 +00:00
{pkgs, ...}: let
my-python-packages = ps:
with ps; [
matplotlib
numpy
];
my-python = pkgs.python3.withPackages my-python-packages;
in
my-python.env