/ shell.nix
shell.nix
1 with import <nixpkgs> { }; 2 3 mkShell { 4 buildInputs = with pkgs; [ 5 gum 6 python312Packages.beautifulsoup4 7 python312Packages.black 8 python312Packages.bpython 9 python312Packages.docopt 10 python312Packages.isort 11 python312Packages.pip 12 python312Packages.pytest 13 python312Packages.requests 14 python312Packages.resend 15 python312Packages.rich 16 pyright 17 shellcheck 18 shfmt 19 ]; 20 }