diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-04-19 07:22:31 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-04-19 07:22:31 -0600 |
| commit | 6d65b5ff05ab5ba0fe8696416d3847ea211f7d0f (patch) | |
| tree | 8e5c00a0c0785b2c234813e84b8b027b5f041b93 | |
| parent | fe02dfa696983cfd1b41343bc4fc1e474daf0a9d (diff) | |
shenvs: add anpi
Diffstat (limited to '')
| -rw-r--r-- | shenvs/anpi.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/shenvs/anpi.nix b/shenvs/anpi.nix new file mode 100644 index 0000000..2d19401 --- /dev/null +++ b/shenvs/anpi.nix @@ -0,0 +1,13 @@ +pkgs: with pkgs.lib; { + paths = with pkgs; [ + (octave.withPackages (packages: with packages; [ + symbolic + ])) + + (python39.withPackages (packages: with packages; [ + sympy + numpy + matplotlib + ])) + ]; +} |
