2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
82 lines
1.5 KiB
Nix
82 lines
1.5 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchPypi
|
|
, hatch-jupyter-builder
|
|
, hatch-nodejs-version
|
|
, hatchling
|
|
, pythonRelaxDepsHook
|
|
, jupyter-events
|
|
, jupyter-server
|
|
, jupyter-server-fileid
|
|
, jupyter-ydoc
|
|
, jupyterlab
|
|
, ypy-websocket
|
|
, pytest-asyncio
|
|
, pytest-jupyter
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jupyter-collaboration";
|
|
version = "1.2.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
pname = "jupyter_collaboration";
|
|
inherit version;
|
|
hash = "sha256-qhcCPAgHlBwt+Lt8NdDa+ZPhNNotCvNtz9WQx6OHvOc=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i "/^timeout/d" pyproject.toml
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
hatch-jupyter-builder
|
|
hatch-nodejs-version
|
|
hatchling
|
|
jupyterlab
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"ypy-websocket"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
jupyter-events
|
|
jupyter-server
|
|
jupyter-server-fileid
|
|
jupyter-ydoc
|
|
ypy-websocket
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytest-jupyter
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"jupyter_collaboration"
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"-W" "ignore::DeprecationWarning"
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$TEMP
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|