2018-11-04 02:12:45 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, nose
|
|
|
|
, jupyter_client
|
|
|
|
, ipython
|
|
|
|
, ipykernel
|
2018-11-21 11:37:26 +00:00
|
|
|
, prompt_toolkit
|
2018-11-04 02:12:45 +00:00
|
|
|
, pygments
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jupyter_console";
|
2019-11-06 19:05:08 +00:00
|
|
|
version = "5.2.0";
|
2018-11-04 02:12:45 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-11-06 19:05:08 +00:00
|
|
|
sha256 = "545dedd3aaaa355148093c5609f0229aeb121b4852995c2accfa64fe3e0e55cd";
|
2018-11-04 02:12:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
jupyter_client
|
|
|
|
ipython
|
|
|
|
ipykernel
|
2018-11-21 11:37:26 +00:00
|
|
|
prompt_toolkit
|
2018-11-04 02:12:45 +00:00
|
|
|
pygments
|
|
|
|
];
|
|
|
|
|
|
|
|
# ValueError: underlying buffer has been detached
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Jupyter terminal console";
|
2019-04-22 09:14:28 +01:00
|
|
|
homepage = "https://jupyter.org/";
|
2018-11-04 02:12:45 +00:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|