mirror of
https://codeberg.org/hyperreal/bin
synced 2024-11-01 08:33:06 +01:00
21 lines
413 B
Nix
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
|
||
|
];
|
||
|
}
|