1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 notebook,
6 qtconsole,
7 jupyter-console,
8 nbconvert,
9 ipykernel,
10 ipywidgets,
11}:
12
13buildPythonPackage rec {
14 version = "1.0.0";
15 format = "setuptools";
16 pname = "jupyter";
17
18 src = fetchPypi {
19 inherit pname version;
20 sha256 = "d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f";
21 };
22
23 propagatedBuildInputs = [
24 notebook
25 qtconsole
26 jupyter-console
27 nbconvert
28 ipykernel
29 ipywidgets
30 ];
31
32 # Meta-package, no tests
33 doCheck = false;
34
35 meta = with lib; {
36 description = "Installs all the Jupyter components in one go";
37 homepage = "https://jupyter.org/";
38 license = licenses.bsd3;
39 platforms = platforms.all;
40 priority = 100; # This is a metapackage which is unimportant
41 };
42}