From 669c698f4dbbe1724a7dc51acb5074966e4b5632 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 19 Jan 2025 13:56:38 -0500 Subject: [PATCH] Infini-DL360/jupyter: add vpython kernel --- hosts/Infini-DL360/jupyter.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/hosts/Infini-DL360/jupyter.nix b/hosts/Infini-DL360/jupyter.nix index 71d7ebc..d791031 100644 --- a/hosts/Infini-DL360/jupyter.nix +++ b/hosts/Infini-DL360/jupyter.nix @@ -38,6 +38,7 @@ in jupyterlab-myst jupyterlab-pygments jupyterlab-vim + jupyterlab-vpython # export nbconvert @@ -66,6 +67,16 @@ in pandas scipy ])); + vpython = mkPythonKernel "VPython" (pkgs.python3.withPackages (p: with p; [ + ipykernel + jupyterlab-vpython + + vpython-jupyter + matplotlib + numpy + pandas + scipy + ])); }; };