python310Packages.jupyter-collaboration: update meta

This commit is contained in:
Fabian Affolter 2023-09-01 08:27:10 +02:00 committed by GitHub
parent 41bf5f4743
commit 476ff6eed2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,11 +20,10 @@
buildPythonPackage rec {
pname = "jupyter-collaboration";
version = "1.1.0";
format = "pyproject";
disabled = pythonOlder "3.8";
format = "pyproject";
src = fetchPypi {
pname = "jupyter_collaboration";
inherit version;
@ -55,14 +54,16 @@ buildPythonPackage rec {
ypy-websocket
];
pythonImportsCheck = [ "jupyter_collaboration" ];
nativeCheckInputs = [
pytest-asyncio
pytest-jupyter
pytestCheckHook
];
pythonImportsCheck = [
"jupyter_collaboration"
];
pytestFlagsArray = [
"-W" "ignore::DeprecationWarning"
];
@ -71,11 +72,11 @@ buildPythonPackage rec {
export HOME=$TEMP
'';
meta = {
changelog = "https://github.com/jupyterlab/jupyter_collaboration/blob/v${version}/CHANGELOG.md";
meta = with lib; {
description = "JupyterLab Extension enabling Real-Time Collaboration";
homepage = "https://github.com/jupyterlab/jupyter_collaboration";
license = lib.licenses.bsd3;
maintainers = lib.teams.jupyter.members;
changelog = "https://github.com/jupyterlab/jupyter_collaboration/blob/v${version}/CHANGELOG.md";
license = licenses.bsd3;
maintainers = teams.jupyter.members;
};
}