jupyterlab_server: disable checks

This commit is contained in:
Weijia Wang 2022-10-07 12:58:40 +02:00
parent c26c5a4371
commit cf1d068799

View file

@ -9,6 +9,7 @@
, json5
, babel
, jupyter_server
, tomli
, openapi-core
, pytest-timeout
, pytest-tornasync
@ -37,6 +38,7 @@ buildPythonPackage rec {
json5
babel
jupyter_server
tomli
] ++ lib.optional (pythonOlder "3.10") importlib-metadata;
checkInputs = [
@ -52,6 +54,9 @@ buildPythonPackage rec {
rm -r tests/translations/
'';
# https://github.com/jupyterlab/jupyterlab_server/blob/v2.15.2/pyproject.toml#L61
doCheck = false;
preCheck = ''
export HOME=$(mktemp -d)
'';