python3Packages.jupyter_client: 6.2.0 -> 7.0.1

This commit is contained in:
Martin Weinelt 2021-08-26 21:38:08 +02:00
parent 05fbcc4397
commit 4788d19570

View file

@ -1,30 +1,34 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, traitlets , entrypoints
, jupyter_core , jupyter_core
, pyzmq , nest-asyncio
, python-dateutil , python-dateutil
, pyzmq
, tornado
, traitlets
, isPyPy , isPyPy
, py , py
, tornado
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "jupyter_client"; pname = "jupyter_client";
version = "6.2.0"; version = "7.0.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "e2ab61d79fbf8b56734a4c2499f19830fbd7f6fefb3e87868ef0545cb3c17eb9"; sha256 = "48822a93d9d75daa5fde235c35cf7a92fc979384735962501d4eb60b197fb43a";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
traitlets entrypoints
jupyter_core jupyter_core
pyzmq nest-asyncio
python-dateutil python-dateutil
pyzmq
tornado tornado
traitlets
] ++ lib.optional isPyPy py; ] ++ lib.optional isPyPy py;
# Circular dependency with ipykernel # Circular dependency with ipykernel