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-10-08 23:23:08 +01:00
|
|
|
version = "7.0.6";
|
2017-04-18 09:53:02 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-10-08 23:23:08 +01:00
|
|
|
sha256 = "8b6e06000eb9399775e0a55c52df6c1be4766666209c22f90c2691ded0e338dc";
|
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
|
|
|
}
|