archive-fandom-wiki/shell.nix

10 lines
173 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; [
python312Packages.docopt
python312Packages.beautifulsoup4
python312Packages.rich
];
}