diff --git a/jupyter/flake.nix b/jupyter/flake.nix index 36f09b1..4915f6b 100644 --- a/jupyter/flake.nix +++ b/jupyter/flake.nix @@ -17,8 +17,8 @@ devShells = forEachSupportedSystem ({pkgs}: { default = pkgs.mkShell { packages = with pkgs; - [python311 jupyter virtualenv] - ++ (with pkgs.python311Packages; [pip jupyter pandas numpy matplotlib plotnine]); + [python311 virtualenv] + ++ (with pkgs.python311Packages; [pip requests jupyter pandas numpy matplotlib plotnine]); }; }); };