blob: b7599dd1c7fba06272047f3f6b9c75845f55b827 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
with (import <nixpkgs> {}).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
];
}
|