Files

13 lines
200 B
Nix
Raw Permalink Normal View History

2026-03-14 07:29:10 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (py: [
py.jupyter
py.seaborn
py.matplotlib
py.pandas
py.numpy
]))
];
}