File tree 2 files changed +41
-26
lines changed
development/python-modules/jupyter_console
2 files changed +41
-26
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -6718,32 +6718,7 @@ in {
6718
6718
};
6719
6719
};
6720
6720
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 { };
6747
6722
6748
6723
jupyterlab = buildPythonPackage rec {
6749
6724
name = "jupyterlab-${version}";
You can’t perform that action at this time.
0 commit comments