{ pkgs ? import { config.allowUnfree = true; } }: pkgs.mkShell { packages = [ (pkgs.python3.withPackages (ps: with ps; [ httpx beautifulsoup4 flask lxml waitress ])) pkgs.claude-code ]; shellHook = '' if [ -f .env ]; then set -a source .env set +a fi ''; }