13 lines
210 B
Nix
13 lines
210 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
# Simple python shell for all packages
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
(pkgs.python313.withPackages (ps: with ps; [
|
|
matplotlib
|
|
numpy
|
|
]))
|
|
];
|
|
}
|