diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..cd5e00d --- /dev/null +++ b/shell.nix @@ -0,0 +1,16 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + buildInputs = [ + pkgs.python312 + pkgs.python312Packages.networkx + pkgs.python312Packages.matplotlib + pkgs.python312Packages.requests + pkgs.python312Packages.bleach + pkgs.python312Packages.beautifulsoup4 + pkgs.python312Packages.pygraphviz + ]; + shellHook = '' + python main.py + ''; +}