This seems to fix it, must have missed the requests requirement

This commit is contained in:
Lillian Violet 2024-02-29 10:40:27 +01:00
parent 0035ccfff6
commit 352b7a0e17

View file

@ -17,8 +17,8 @@
devShells = forEachSupportedSystem ({pkgs}: { devShells = forEachSupportedSystem ({pkgs}: {
default = pkgs.mkShell { default = pkgs.mkShell {
packages = with pkgs; packages = with pkgs;
[python311 jupyter virtualenv] [python311 virtualenv]
++ (with pkgs.python311Packages; [pip jupyter pandas numpy matplotlib plotnine]); ++ (with pkgs.python311Packages; [pip requests jupyter pandas numpy matplotlib plotnine]);
}; };
}); });
}; };