blob: df18444ba5b8066a93926897d851aa1fcf2afade (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
ipykernel,
ipywidgets,
jupyter-console,
jupyterlab,
nbconvert,
notebook,
}:
buildPythonPackage rec {
pname = "jupyter";
version = "1.1.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-1VRnvOq96knX42JK9+M9WcN//1PtOjUOGslXvtcx3no=";
};
build-system = [ setuptools ];
dependencies = [
ipykernel
ipywidgets
jupyter-console
jupyterlab
nbconvert
notebook
];
# Meta-package, no tests
doCheck = false;
dontUsePythonImportsCheck = true;
meta = {
description = "Installs all the Jupyter components in one go";
homepage = "https://jupyter.org/";
license = lib.licenses.bsd3;
priority = 100; # This is a metapackage which is unimportant
};
}
|