{ pkgs, ... }: pkgs.mkShell { packages = with pkgs; [ (python3.withPackages ( python-pkgs: with python-pkgs; [ pip numpy pandas python-dotenv requests ] )) ]; shellHook = '' exec $SHELL ''; }