bin/shell.nix

21 lines
413 B
Nix
Raw Permalink Normal View History

2024-09-07 23:07:20 +02:00
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
];
}