From 69687406bb97f2e99320374dc50e6b0f4645ff9a Mon Sep 17 00:00:00 2001 From: Naoki Pross Date: Tue, 19 Oct 2021 18:26:52 +0200 Subject: Create jupyter notebook --- notebook/shell.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 notebook/shell.nix (limited to 'notebook/shell.nix') diff --git a/notebook/shell.nix b/notebook/shell.nix new file mode 100644 index 0000000..b7599dd --- /dev/null +++ b/notebook/shell.nix @@ -0,0 +1,25 @@ +with (import {}).pkgs; +let + +# jupyterlab-vim = python3.pkgs.buildPythonPackage rec { +# pname = "jupyterlab_vim"; +# version = "0.14.5"; +# src = python38.pkgs.fetchPypi { +# inherit pname version; +# sha256 = "10p294vkha8c485yr2x1j3y084k86crzc7ihcb1wj6cd54plyybl"; +# }; +# buildInputs = with python3Packages; [ +# jupyterlab +# jupyter-packaging +# ]; +# }; + +in +mkShell { + buildInputs = (with python3Packages; [ + ipykernel jupyterlab sympy + matplotlib numpy pint + ]) ++ [ + # jupyterlab-vim + ]; +} -- cgit v1.2.1