python.pkgs.jupyter_console: 5.0.0 -> 5.2.0
This commit is contained in:
parent
e3b562e0e2
commit
8d4e37710f
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -6722,32 +6722,7 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
jupyter_console = buildPythonPackage rec {
|
jupyter_console = callPackage ../development/python-modules/jupyter_console { };
|
||||||
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;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
jupyterlab = buildPythonPackage rec {
|
jupyterlab = buildPythonPackage rec {
|
||||||
name = "jupyterlab-${version}";
|
name = "jupyterlab-${version}";
|
||||||
|
|
Loading…
Reference in New Issue