temperature-development: import

This commit is contained in:
2026-03-14 07:29:10 +01:00
parent 0d64c4dfb3
commit b193946a1a
5 changed files with 21088 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (py: [
py.jupyter
py.seaborn
py.matplotlib
py.pandas
py.numpy
]))
];
}