python3Packages.jupyterlab_server: fix build on darwin (#181426)
* python3Packages.jupyterlab_server: fix build on darwin Disable failing test of dependency jupyter_server on darwin, and mark the package as unbroken. Closes #176525. * Update pkgs/development/python-modules/jupyter_server/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
0f68824d86
commit
4a01ca36d6
2 changed files with 2 additions and 1 deletions
|
@ -77,6 +77,8 @@ buildPythonPackage rec {
|
||||||
] ++ lib.optionals stdenv.isDarwin [
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
# attempts to use trashcan, build env doesn't allow this
|
# attempts to use trashcan, build env doesn't allow this
|
||||||
"test_delete"
|
"test_delete"
|
||||||
|
# test is presumable broken in sandbox
|
||||||
|
"test_authorized_requests"
|
||||||
];
|
];
|
||||||
|
|
||||||
disabledTestPaths = [
|
disabledTestPaths = [
|
||||||
|
|
|
@ -49,7 +49,6 @@ buildPythonPackage rec {
|
||||||
__darwinAllowLocalNetworking = true;
|
__darwinAllowLocalNetworking = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
broken = stdenv.isDarwin;
|
|
||||||
description = "JupyterLab Server";
|
description = "JupyterLab Server";
|
||||||
homepage = "https://jupyter.org";
|
homepage = "https://jupyter.org";
|
||||||
license = licenses.bsdOriginal;
|
license = licenses.bsdOriginal;
|
||||||
|
|
Loading…
Reference in a new issue