python311Packages.jupyter-collaboration: 2.0.4 -> 2.0.5

Changelog: https://github.com/jupyterlab/jupyter_collaboration/blob/v2.0.5/CHANGELOG.md
This commit is contained in:
natsukium 2024-03-21 22:04:46 +09:00
parent 6f0641a5bb
commit 2cc49d7508
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53
1 changed files with 9 additions and 8 deletions

View File

@ -19,7 +19,7 @@
buildPythonPackage rec {
pname = "jupyter-collaboration";
version = "2.0.4";
version = "2.0.5";
pyproject = true;
disabled = pythonOlder "3.8";
@ -27,21 +27,21 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "jupyter_collaboration";
inherit version;
hash = "sha256-3N3w6JJ0SHa1EYBED/aU1g0IX9nDHf4iseGPwEK1zpw=";
hash = "sha256-aQYZGiya7E3blwVkWx6w2Hb2M0v/z9dOMU72EGW4aCg=";
};
postPatch = ''
sed -i "/^timeout/d" pyproject.toml
'';
nativeBuildInputs = [
build-system = [
hatch-jupyter-builder
hatch-nodejs-version
hatchling
jupyterlab
];
propagatedBuildInputs = [
dependencies = [
jsonschema
jupyter-events
jupyter-server
@ -60,14 +60,15 @@ buildPythonPackage rec {
"jupyter_collaboration"
];
pytestFlagsArray = [
"-W" "ignore::DeprecationWarning"
];
preCheck = ''
export HOME=$TEMP
'';
disabledTests = [
# ExceptionGroup: unhandled errors in a TaskGroup (1 sub-exception)
"test_dirty"
];
__darwinAllowLocalNetworking = true;
meta = with lib; {