mirror of
https://codeberg.org/hyperreal/archive-fandom-wiki
synced 2024-11-01 08:33:06 +01:00
13 lines
241 B
Nix
13 lines
241 B
Nix
with import <nixpkgs> { };
|
|
|
|
pkgs.mkShellNoCC {
|
|
packages = with pkgs; [
|
|
python312Packages.black
|
|
python312Packages.beautifulsoup4
|
|
python312Packages.docopt
|
|
python312Packages.isort
|
|
python312Packages.rich
|
|
pyright
|
|
];
|
|
}
|