{ lib , buildPythonPackage , fetchPypi , traitlets , jupyter_core , pyzmq , dateutil , isPyPy , py , tornado }: buildPythonPackage rec { pname = "jupyter_client"; version = "6.1.7"; src = fetchPypi { inherit pname version; sha256 = "49e390b36fe4b4226724704ea28d9fb903f1a3601b6882ce3105221cd09377a1"; }; propagatedBuildInputs = [ traitlets jupyter_core pyzmq dateutil tornado ] ++ lib.optional isPyPy py; # Circular dependency with ipykernel doCheck = false; meta = { description = "Jupyter protocol implementation and client libraries"; homepage = "https://jupyter.org/"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ fridh ]; }; }