From 352b7a0e170e995c4e6eb0f8ba41fcdb5ecf87d9 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Thu, 29 Feb 2024 10:40:27 +0100 Subject: [PATCH] This seems to fix it, must have missed the requests requirement --- jupyter/flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]); }; }); };