archive-fandom-wiki/shell.nix

13 lines
241 B
Nix
Raw Normal View History

2024-09-02 21:37:10 +02:00
with import <nixpkgs> { };
2024-08-18 21:16:32 +02:00
2024-09-02 21:37:10 +02:00
pkgs.mkShellNoCC {
packages = with pkgs; [
2024-09-18 05:27:48 +02:00
python312Packages.black
2024-09-02 21:37:10 +02:00
python312Packages.beautifulsoup4
2024-09-18 05:27:48 +02:00
python312Packages.docopt
python312Packages.isort
2024-09-02 21:37:10 +02:00
python312Packages.rich
2024-09-18 05:27:48 +02:00
pyright
2024-09-02 21:37:10 +02:00
];
}