Infini-DL360/jupyter: add vpython kernel

This commit is contained in:
Infinidoge 2025-01-19 13:56:38 -05:00
parent 903800fb0b
commit 669c698f4d
Signed by: Infinidoge
SSH key fingerprint: SHA256:EMoPe5e2dO0gEvtBb2xkZTz5dkyL0rBmuiGTKG5s96E

View file

@ -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
]));
};
};