mirror of
https://codeberg.org/hyperreal/archive-fandom-wiki
synced 2024-11-01 16:43:07 +01:00
10 lines
173 B
Nix
10 lines
173 B
Nix
with import <nixpkgs> { };
|
|
|
|
pkgs.mkShellNoCC {
|
|
packages = with pkgs; [
|
|
python312Packages.docopt
|
|
python312Packages.beautifulsoup4
|
|
python312Packages.rich
|
|
];
|
|
}
|