Add shell.nix

This commit is contained in:
Jeffrey Serio 2024-08-18 14:16:32 -05:00
parent 485e147207
commit e28eef627c

7
shell.nix Normal file
View File

@ -0,0 +1,7 @@
with import <nixpkgs> {};
(
pkgs.python312.buildEnv.override {
extraLibs = with pkgs.python312Packages; [ docopt beautifulsoup4 rich ];
}
).env