{ pkgs ? import {} }: # Simple python shell for all packages pkgs.mkShell { buildInputs = with pkgs; [ (pkgs.python313.withPackages (ps: with ps; [ matplotlib numpy ])) ]; }