mirror of
https://github.com/NotAShelf/projectile-simulation.git
synced 2024-11-22 13:20:47 +00:00
10 lines
191 B
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
|