2017-04-18 09:53:02 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2021-08-26 20:38:08 +01:00
|
|
|
, entrypoints
|
2017-04-18 09:53:02 +01:00
|
|
|
, jupyter_core
|
2021-08-26 20:38:08 +01:00
|
|
|
, nest-asyncio
|
2021-07-03 12:37:24 +01:00
|
|
|
, python-dateutil
|
2021-08-26 20:38:08 +01:00
|
|
|
, pyzmq
|
|
|
|
, tornado
|
|
|
|
, traitlets
|
2017-04-18 09:53:02 +01:00
|
|
|
, isPyPy
|
|
|
|
, py
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jupyter_client";
|
2021-11-25 22:46:56 +00:00
|
|
|
version = "7.1.0";
|
2017-04-18 09:53:02 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-11-25 22:46:56 +00:00
|
|
|
sha256 = "a5f995a73cffb314ed262713ae6dfce53c6b8216cea9f332071b8ff44a6e1654";
|
2017-04-18 09:53:02 +01:00
|
|
|
};
|
|
|
|
|
2019-08-03 01:31:44 +01:00
|
|
|
propagatedBuildInputs = [
|
2021-08-26 20:38:08 +01:00
|
|
|
entrypoints
|
2019-08-03 01:31:44 +01:00
|
|
|
jupyter_core
|
2021-08-26 20:38:08 +01:00
|
|
|
nest-asyncio
|
2021-07-03 12:37:24 +01:00
|
|
|
python-dateutil
|
2021-08-26 20:38:08 +01:00
|
|
|
pyzmq
|
2019-08-03 01:31:44 +01:00
|
|
|
tornado
|
2021-08-26 20:38:08 +01:00
|
|
|
traitlets
|
2019-08-03 01:31:44 +01:00
|
|
|
] ++ lib.optional isPyPy py;
|
2017-04-18 09:53:02 +01:00
|
|
|
|
|
|
|
# Circular dependency with ipykernel
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Jupyter protocol implementation and client libraries";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://jupyter.org/";
|
2017-04-18 09:53:02 +01:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
|
|
};
|
2019-08-03 01:31:44 +01:00
|
|
|
}
|