mirror of
https://codeberg.org/hyperreal/archive-fandom-wiki
synced 2024-11-01 08:33:06 +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
|
||||
build
|
||||
venv
|
||||
.direnv
|
||||
|
14
shell.nix
14
shell.nix
@ -1,7 +1,9 @@
|
||||
with import <nixpkgs> {};
|
||||
with import <nixpkgs> { };
|
||||
|
||||
(
|
||||
pkgs.python312.buildEnv.override {
|
||||
extraLibs = with pkgs.python312Packages; [ docopt beautifulsoup4 rich ];
|
||||
}
|
||||
).env
|
||||
pkgs.mkShellNoCC {
|
||||
packages = with pkgs; [
|
||||
python312Packages.docopt
|
||||
python312Packages.beautifulsoup4
|
||||
python312Packages.rich
|
||||
];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user