tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python.pkgs.jupyter_console: 5.0.0 -> 5.2.0
Frederik Rietdijk
8 years ago
8d4e3771
e3b562e0
+41
-26
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
jupyter_console
default.nix
top-level
python-packages.nix
+40
pkgs/development/python-modules/jupyter_console/default.nix
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, fetchPypi
4
4
+
, nose
5
5
+
, jupyter_client
6
6
+
, ipython
7
7
+
, ipykernel
8
8
+
, prompt_toolkit
9
9
+
, pygments
10
10
+
}:
11
11
+
12
12
+
buildPythonPackage rec {
13
13
+
pname = "jupyter_console";
14
14
+
version = "5.2.0";
15
15
+
name = "${pname}-${version}";
16
16
+
17
17
+
src = fetchPypi {
18
18
+
inherit pname version;
19
19
+
sha256 = "545dedd3aaaa355148093c5609f0229aeb121b4852995c2accfa64fe3e0e55cd";
20
20
+
};
21
21
+
22
22
+
checkInputs = [ nose ];
23
23
+
propagatedBuildInputs = [
24
24
+
jupyter_client
25
25
+
ipython
26
26
+
ipykernel
27
27
+
prompt_toolkit
28
28
+
pygments
29
29
+
];
30
30
+
31
31
+
# ValueError: underlying buffer has been detached
32
32
+
doCheck = false;
33
33
+
34
34
+
meta = {
35
35
+
description = "Jupyter terminal console";
36
36
+
homepage = "http://jupyter.org/";
37
37
+
license = lib.licenses.bsd3;
38
38
+
platforms = lib.platforms.all;
39
39
+
};
40
40
+
}
+1
-26
pkgs/top-level/python-packages.nix
···
6722
6722
};
6723
6723
};
6724
6724
6725
6725
-
jupyter_console = buildPythonPackage rec {
6726
6726
-
version = "5.0.0";
6727
6727
-
name = "jupyter_console-${version}";
6728
6728
-
6729
6729
-
src = pkgs.fetchurl {
6730
6730
-
url = "mirror://pypi/j/jupyter_console/${name}.tar.gz";
6731
6731
-
sha256 = "7ddfc8cc49921b0ed852500928922e637f9188358c94b5c76339a5a8f9ac4c11";
6732
6732
-
};
6733
6733
-
6734
6734
-
buildInputs = with self; [ nose ];
6735
6735
-
propagatedBuildInputs = with self; [
6736
6736
-
jupyter_client
6737
6737
-
ipython
6738
6738
-
ipykernel
6739
6739
-
];
6740
6740
-
6741
6741
-
# ValueError: underlying buffer has been detached
6742
6742
-
doCheck = false;
6743
6743
-
6744
6744
-
meta = {
6745
6745
-
description = "Jupyter terminal console";
6746
6746
-
homepage = "http://jupyter.org/";
6747
6747
-
license = licenses.bsd3;
6748
6748
-
platforms = platforms.all;
6749
6749
-
};
6750
6750
-
};
6725
6725
+
jupyter_console = callPackage ../development/python-modules/jupyter_console { };
6751
6726
6752
6727
jupyterlab = buildPythonPackage rec {
6753
6728
name = "jupyterlab-${version}";