summary refs log tree commit diff
path: root/pkgs/development/python-modules/jupyter_console/5.nix
blob: 2072b24a3781b0216ba3fd6df689d298c56c7d4e (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
36
37
38
{ lib
, buildPythonPackage
, fetchPypi
, nose
, jupyter_client
, ipython
, ipykernel
, prompt-toolkit
, pygments
}:

buildPythonPackage rec {
  pname = "jupyter_console";
  version = "5.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "545dedd3aaaa355148093c5609f0229aeb121b4852995c2accfa64fe3e0e55cd";
  };

  checkInputs = [ nose ];
  propagatedBuildInputs = [
    jupyter_client
    ipython
    ipykernel
    prompt-toolkit
    pygments
  ];

  # ValueError: underlying buffer has been detached
  doCheck = false;

  meta = {
    description = "Jupyter terminal console";
    homepage = "https://jupyter.org/";
    license = lib.licenses.bsd3;
  };
}