about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/jupyter/default.nix
blob: 51108eaa7a8f45f45935dd318dc799c4f87e6a8a (plain) (blame)
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
{ lib
, buildPythonPackage
, fetchPypi
, notebook
, qtconsole
, jupyter-console
, nbconvert
, ipykernel
, ipywidgets
}:

buildPythonPackage rec {
  version = "1.0.0";
  format = "setuptools";
  pname = "jupyter";

  src = fetchPypi {
    inherit pname version;
    sha256 = "d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f";
  };

  propagatedBuildInputs = [ notebook qtconsole jupyter-console nbconvert ipykernel ipywidgets ];

  # Meta-package, no tests
  doCheck = false;

  meta = with lib; {
    description = "Installs all the Jupyter components in one go";
    homepage = "https://jupyter.org/";
    license = licenses.bsd3;
    platforms = platforms.all;
    priority = 100; # This is a metapackage which is unimportant
  };

}