Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / jupyter / default.nix
blobb795dc9c91019c96a5ef61d3fda263adeec17166
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , notebook
5 , qtconsole
6 , jupyter-console
7 , nbconvert
8 , ipykernel
9 , ipywidgets
12 buildPythonPackage rec {
13   version = "1.0.0";
14   pname = "jupyter";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f";
19   };
21   propagatedBuildInputs = [ notebook qtconsole jupyter-console nbconvert ipykernel ipywidgets ];
23   # Meta-package, no tests
24   doCheck = false;
26   meta = with lib; {
27     description = "Installs all the Jupyter components in one go";
28     homepage = "https://jupyter.org/";
29     license = licenses.bsd3;
30     platforms = platforms.all;
31     priority = 100; # This is a metapackage which is unimportant
32   };