weekend w 17

This commit is contained in:
2025-04-27 19:06:22 +02:00
parent 2be5a93cad
commit 5049c3ec13
9 changed files with 197 additions and 127 deletions

View File

@@ -0,0 +1,18 @@
let
pkgs = import <nixpkgs> {};
in pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (python-pkgs: with python-pkgs; [
pandas
numpy
seaborn
matplotlib
setuptools
scipy
uncertainties
pillow
sympy
requests
]))
];
}