mirror of
https://codeberg.org/hyperreal/archive-fandom-wiki
synced 2024-11-01 16:43:07 +01:00
Fix shell.nix
This commit is contained in:
parent
e28eef627c
commit
191192b9a1
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
*.egg
|
*.egg
|
||||||
build
|
build
|
||||||
venv
|
venv
|
||||||
|
.direnv
|
||||||
|
10
shell.nix
10
shell.nix
@ -1,7 +1,9 @@
|
|||||||
with import <nixpkgs> { };
|
with import <nixpkgs> { };
|
||||||
|
|
||||||
(
|
pkgs.mkShellNoCC {
|
||||||
pkgs.python312.buildEnv.override {
|
packages = with pkgs; [
|
||||||
extraLibs = with pkgs.python312Packages; [ docopt beautifulsoup4 rich ];
|
python312Packages.docopt
|
||||||
|
python312Packages.beautifulsoup4
|
||||||
|
python312Packages.rich
|
||||||
|
];
|
||||||
}
|
}
|
||||||
).env
|
|
||||||
|
Loading…
Reference in New Issue
Block a user