about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/jupyter-collaboration/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/jupyter-collaboration/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/jupyter-collaboration/default.nix80
1 files changed, 80 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/jupyter-collaboration/default.nix b/nixpkgs/pkgs/development/python-modules/jupyter-collaboration/default.nix
new file mode 100644
index 000000000000..3f20ac8b4da0
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/jupyter-collaboration/default.nix
@@ -0,0 +1,80 @@
+{ lib
+, buildPythonPackage
+, pythonOlder
+, fetchPypi
+, hatch-jupyter-builder
+, hatch-nodejs-version
+, hatchling
+, jsonschema
+, jupyter-events
+, jupyter-server
+, jupyter-server-fileid
+, jupyter-ydoc
+, jupyterlab
+, pycrdt-websocket
+, pytest-jupyter
+, pytestCheckHook
+, websockets
+}:
+
+buildPythonPackage rec {
+  pname = "jupyter-collaboration";
+  version = "2.0.4";
+  pyproject = true;
+
+  disabled = pythonOlder "3.8";
+
+  src = fetchPypi {
+    pname = "jupyter_collaboration";
+    inherit version;
+    hash = "sha256-3N3w6JJ0SHa1EYBED/aU1g0IX9nDHf4iseGPwEK1zpw=";
+  };
+
+  postPatch = ''
+    sed -i "/^timeout/d" pyproject.toml
+  '';
+
+  nativeBuildInputs = [
+    hatch-jupyter-builder
+    hatch-nodejs-version
+    hatchling
+    jupyterlab
+  ];
+
+  propagatedBuildInputs = [
+    jsonschema
+    jupyter-events
+    jupyter-server
+    jupyter-server-fileid
+    jupyter-ydoc
+    pycrdt-websocket
+  ];
+
+  nativeCheckInputs = [
+    pytest-jupyter
+    pytestCheckHook
+    websockets
+  ];
+
+  pythonImportsCheck = [
+    "jupyter_collaboration"
+  ];
+
+  pytestFlagsArray = [
+    "-W" "ignore::DeprecationWarning"
+  ];
+
+  preCheck = ''
+    export HOME=$TEMP
+  '';
+
+  __darwinAllowLocalNetworking = true;
+
+  meta = with lib; {
+    description = "JupyterLab Extension enabling Real-Time Collaboration";
+    homepage = "https://github.com/jupyterlab/jupyter_collaboration";
+    changelog = "https://github.com/jupyterlab/jupyter_collaboration/blob/v${version}/CHANGELOG.md";
+    license = licenses.bsd3;
+    maintainers = teams.jupyter.members;
+  };
+}