18 buildPythonPackage rec {
19 pname = "jupyter_client";
24 inherit pname version;
25 hash = "sha256-YClLLVuGk1bIk/V7God+plENYNRc9LOAV/FnLYVpmsk=";
32 propagatedBuildInputs = [
40 ] ++ lib.optionals (pythonOlder "3.10") [
42 ] ++ lib.optional isPyPy py;
44 # Circular dependency with ipykernel
48 description = "Jupyter protocol implementation and client libraries";
49 homepage = "https://jupyter.org/";
50 license = lib.licenses.bsd3;
51 maintainers = with lib.maintainers; [ fridh ];