bin/shell.nix
2024-09-07 16:07:20 -05:00

21 lines
413 B
Nix

with import <nixpkgs> { };
mkShell {
buildInputs = with pkgs; [
gum
python312Packages.beautifulsoup4
python312Packages.black
python312Packages.bpython
python312Packages.docopt
python312Packages.isort
python312Packages.pip
python312Packages.pytest
python312Packages.requests
python312Packages.resend
python312Packages.rich
pyright
shellcheck
shfmt
];
}