at master 816 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6 ipykernel, 7 ipywidgets, 8 jupyter-console, 9 jupyterlab, 10 nbconvert, 11 notebook, 12}: 13 14buildPythonPackage rec { 15 pname = "jupyter"; 16 version = "1.1.1"; 17 pyproject = true; 18 19 src = fetchPypi { 20 inherit pname version; 21 hash = "sha256-1VRnvOq96knX42JK9+M9WcN//1PtOjUOGslXvtcx3no="; 22 }; 23 24 build-system = [ setuptools ]; 25 26 dependencies = [ 27 ipykernel 28 ipywidgets 29 jupyter-console 30 jupyterlab 31 nbconvert 32 notebook 33 ]; 34 35 # Meta-package, no tests 36 doCheck = false; 37 38 dontUsePythonImportsCheck = true; 39 40 meta = with lib; { 41 description = "Installs all the Jupyter components in one go"; 42 homepage = "https://jupyter.org/"; 43 license = licenses.bsd3; 44 priority = 100; # This is a metapackage which is unimportant 45 }; 46}