14 buildPythonPackage rec {
15 pname = "jupyter-client";
20 pname = "jupyter_client";
22 hash = "sha256-6EJRXiurjhkYbYn9/qer0V453VgflOOZ8A4q9aFlLT8=";
29 propagatedBuildInputs = [
35 ] ++ lib.optionals (pythonOlder "3.10") [
39 pythonImportsCheck = [
43 # Circular dependency with ipykernel
47 description = "Jupyter protocol implementation and client libraries";
48 homepage = "https://github.com/jupyter/jupyter_client";
49 changelog = "https://github.com/jupyter/jupyter_client/blob/v${version}/CHANGELOG.md";
50 license = lib.licenses.bsd3;
51 maintainers = with lib.maintainers; [ fridh ];