mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
jupyterlab_server: disable checks
This commit is contained in:
parent
c26c5a4371
commit
cf1d068799
1 changed files with 5 additions and 0 deletions
|
@ -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)
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue