projectile-simulation/shell.nix
2023-10-07 23:53:53 +03:00

10 lines
174 B
Nix

{pkgs, ...}: let
my-python-packages = ps:
with ps; [
matplotlib
numpy
];
my-python = pkgs.python3.withPackages my-python-packages;
in
my-python.env