From 0035ccfff6def2abf853472a4ea281ae216ef1c4 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Thu, 29 Feb 2024 10:14:10 +0100 Subject: [PATCH] Add plotnine to jupyter --- jupyter/flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyter/flake.nix b/jupyter/flake.nix index 9d69cde..36f09b1 100644 --- a/jupyter/flake.nix +++ b/jupyter/flake.nix @@ -18,7 +18,7 @@ default = pkgs.mkShell { packages = with pkgs; [python311 jupyter virtualenv] - ++ (with pkgs.python311Packages; [pip jupyter pandas numpy matplotlib]); + ++ (with pkgs.python311Packages; [pip jupyter pandas numpy matplotlib plotnine]); }; }); };