Skip to content

Commit

Permalink
python.pkgs.jupyter_console: 5.0.0 -> 5.2.0
Browse files Browse the repository at this point in the history
(cherry picked from commit 8d4e377)
  • Loading branch information
FRidh committed Sep 13, 2017
1 parent 64478a0 commit 6076d9f
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 26 deletions.
40 changes: 40 additions & 0 deletions pkgs/development/python-modules/jupyter_console/default.nix
@@ -0,0 +1,40 @@
{ lib
, buildPythonPackage
, fetchPypi
, nose
, jupyter_client
, ipython
, ipykernel
, prompt_toolkit
, pygments
}:

buildPythonPackage rec {
pname = "jupyter_console";
version = "5.2.0";
name = "${pname}-${version}";

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 = "http://jupyter.org/";
license = lib.licenses.bsd3;
platforms = lib.platforms.all;
};
}
27 changes: 1 addition & 26 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -6718,32 +6718,7 @@ in {
};
};

jupyter_console = buildPythonPackage rec {
version = "5.0.0";
name = "jupyter_console-${version}";

src = pkgs.fetchurl {
url = "mirror://pypi/j/jupyter_console/${name}.tar.gz";
sha256 = "7ddfc8cc49921b0ed852500928922e637f9188358c94b5c76339a5a8f9ac4c11";
};

buildInputs = with self; [ nose ];
propagatedBuildInputs = with self; [
jupyter_client
ipython
ipykernel
];

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

meta = {
description = "Jupyter terminal console";
homepage = "http://jupyter.org/";
license = licenses.bsd3;
platforms = platforms.all;
};
};
jupyter_console = callPackage ../development/python-modules/jupyter_console { };

jupyterlab = buildPythonPackage rec {
name = "jupyterlab-${version}";
Expand Down

0 comments on commit 6076d9f

Please sign in to comment.