{ lib, buildPythonPackage, fetchPypi, hatchling, jsonschema, jupyter-events, jupyter-server, jupyter-server-fileid, jupyter-ydoc, pycrdt, pycrdt-websocket, jupyter-collaboration, }: buildPythonPackage rec { pname = "jupyter-server-ydoc"; version = "1.0.1"; pyproject = true; src = fetchPypi { pname = "jupyter_server_ydoc"; inherit version; hash = "sha256-bJk3+T/H8Y1D3NToLlyLceQBPjlTJA7y+9c7PDN6KPc="; }; build-system = [ hatchling ]; dependencies = [ jsonschema jupyter-events jupyter-server jupyter-server-fileid jupyter-ydoc pycrdt pycrdt-websocket ]; pythonImportsCheck = [ "jupyter_server_ydoc" ]; # no tests doCheck = false; passthru.tests = jupyter-collaboration.tests; meta = { description = "Jupyter-server extension integrating collaborative shared models"; homepage = "https://github.com/jupyterlab/jupyter-collaboration/tree/main/projects/jupyter-server-ydoc"; license = lib.licenses.bsd3; maintainers = lib.teams.jupyter.members; }; }