projectile-simulation/shell.nix

10 lines
191 B
Nix

{pkgs ? import <nixpkgs> {}}: let
my-python-packages = ps:
with ps; [
matplotlib
numpy
];
my-python = pkgs.python3.withPackages my-python-packages;
in
my-python.env