stageM2/shell.nix
2025-04-22 12:42:14 +02:00

25 lines
477 B
Nix

{ nixpkgs ? (import ./npins).nixpkgs, pkgs ? import nixpkgs { config.allowUnfree = true; } }:
pkgs.mkShell {
nativeBuildInputs = [
(pkgs.python3.withPackages (ps: [
ps.numpy
ps.scipy
ps.ipython
ps.tqdm
ps.h5py
ps.ipympl
ps.numba
ps.matplotlib
ps.pandas
ps.jupyter
ps.jupyterlab-git
ps.mkdocs
ps.mkdocs-material
ps.mkdocstrings
ps.mkdocstrings-python
]))
pkgs.vale
];
}