ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
82 lines
1.5 KiB
Nix
82 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
|
|
# build-system
|
|
hatch-jupyter-builder,
|
|
hatch-nodejs-version,
|
|
hatchling,
|
|
jupyterlab,
|
|
|
|
# dependencies
|
|
jsonschema,
|
|
jupyter-events,
|
|
jupyter-server,
|
|
jupyter-server-fileid,
|
|
jupyter-ydoc,
|
|
pycrdt,
|
|
pycrdt-websocket,
|
|
|
|
# tests
|
|
pytest-jupyter,
|
|
pytestCheckHook,
|
|
websockets,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jupyter-collaboration";
|
|
version = "2.1.4";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "jupyter_collaboration";
|
|
inherit version;
|
|
hash = "sha256-YT3wrTQ8imuTK8zeJbwscHtawtqspf1oItGzMMfg5io=";
|
|
};
|
|
|
|
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
|
|
pycrdt-websocket
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-jupyter
|
|
pytestCheckHook
|
|
websockets
|
|
];
|
|
|
|
pythonImportsCheck = [ "jupyter_collaboration" ];
|
|
|
|
preCheck = ''
|
|
export HOME=$TEMP
|
|
'';
|
|
|
|
pytestFlagsArray = [ "-Wignore::DeprecationWarning" ];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
meta = {
|
|
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 = lib.licenses.bsd3;
|
|
maintainers = lib.teams.jupyter.members;
|
|
};
|
|
}
|