feat: init

This commit is contained in:
Maurice Debray 2025-04-11 14:38:13 +02:00
commit 44f8ad9293
No known key found for this signature in database
3 changed files with 115 additions and 0 deletions

24
shell.nix Normal file
View file

@ -0,0 +1,24 @@
{ 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.jupyter
ps.jupyterlab-git
ps.mkdocs
ps.mkdocs-material
ps.mkdocstrings
ps.mkdocstrings-python
]))
pkgs.vale
];
}