diff --git a/flake.nix b/flake.nix index 0d1fcc0..3fa246c 100644 --- a/flake.nix +++ b/flake.nix @@ -219,6 +219,10 @@ }) php82Packages.composer ];}; + python-jupyter = pkgs.mkShell { packages = [ (pkgs.python3.withPackages (ps: with ps; [ + ipykernel jupyterlab matplotlib numpy pandas + ])) ]; }; + opentofu = pkgs.mkShell { packages = with pkgs; [ opentofu ]; }; } );