Skip to content

Commit 6076d9f

Browse files
committedSep 13, 2017
python.pkgs.jupyter_console: 5.0.0 -> 5.2.0
(cherry picked from commit 8d4e377)
1 parent 64478a0 commit 6076d9f

File tree

2 files changed

+41
-26
lines changed

2 files changed

+41
-26
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{ lib
2+
, buildPythonPackage
3+
, fetchPypi
4+
, nose
5+
, jupyter_client
6+
, ipython
7+
, ipykernel
8+
, prompt_toolkit
9+
, pygments
10+
}:
11+
12+
buildPythonPackage rec {
13+
pname = "jupyter_console";
14+
version = "5.2.0";
15+
name = "${pname}-${version}";
16+
17+
src = fetchPypi {
18+
inherit pname version;
19+
sha256 = "545dedd3aaaa355148093c5609f0229aeb121b4852995c2accfa64fe3e0e55cd";
20+
};
21+
22+
checkInputs = [ nose ];
23+
propagatedBuildInputs = [
24+
jupyter_client
25+
ipython
26+
ipykernel
27+
prompt_toolkit
28+
pygments
29+
];
30+
31+
# ValueError: underlying buffer has been detached
32+
doCheck = false;
33+
34+
meta = {
35+
description = "Jupyter terminal console";
36+
homepage = "http://jupyter.org/";
37+
license = lib.licenses.bsd3;
38+
platforms = lib.platforms.all;
39+
};
40+
}

‎pkgs/top-level/python-packages.nix

+1-26
Original file line numberDiff line numberDiff line change
@@ -6718,32 +6718,7 @@ in {
67186718
};
67196719
};
67206720

6721-
jupyter_console = buildPythonPackage rec {
6722-
version = "5.0.0";
6723-
name = "jupyter_console-${version}";
6724-
6725-
src = pkgs.fetchurl {
6726-
url = "mirror://pypi/j/jupyter_console/${name}.tar.gz";
6727-
sha256 = "7ddfc8cc49921b0ed852500928922e637f9188358c94b5c76339a5a8f9ac4c11";
6728-
};
6729-
6730-
buildInputs = with self; [ nose ];
6731-
propagatedBuildInputs = with self; [
6732-
jupyter_client
6733-
ipython
6734-
ipykernel
6735-
];
6736-
6737-
# ValueError: underlying buffer has been detached
6738-
doCheck = false;
6739-
6740-
meta = {
6741-
description = "Jupyter terminal console";
6742-
homepage = "http://jupyter.org/";
6743-
license = licenses.bsd3;
6744-
platforms = platforms.all;
6745-
};
6746-
};
6721+
jupyter_console = callPackage ../development/python-modules/jupyter_console { };
67476722

67486723
jupyterlab = buildPythonPackage rec {
67496724
name = "jupyterlab-${version}";

0 commit comments

Comments
 (0)
Please sign in to comment.