587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
85 lines
1.6 KiB
Nix
85 lines
1.6 KiB
Nix
{ 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.11";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
pname = "jupyter_collaboration";
|
|
inherit version;
|
|
hash = "sha256-K7HN5yzadY5Sb6Sfn/K/QCzu14AcDEGHq+TSHkLhgTY=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i "/^timeout/d" pyproject.toml
|
|
'';
|
|
|
|
build-system = [
|
|
hatch-jupyter-builder
|
|
hatch-nodejs-version
|
|
hatchling
|
|
jupyterlab
|
|
];
|
|
|
|
dependencies = [
|
|
jsonschema
|
|
jupyter-events
|
|
jupyter-server
|
|
jupyter-server-fileid
|
|
jupyter-ydoc
|
|
pycrdt-websocket
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-jupyter
|
|
pytestCheckHook
|
|
websockets
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"jupyter_collaboration"
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$TEMP
|
|
'';
|
|
|
|
pytestFlagsArray = [
|
|
"-Wignore::DeprecationWarning"
|
|
];
|
|
|
|
disabledTests = [
|
|
# ExceptionGroup: unhandled errors in a TaskGroup (1 sub-exception)
|
|
"test_dirty"
|
|
];
|
|
|
|
__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;
|
|
};
|
|
}
|