From 7a28fcef8458cd732008f7b42d535d1465d30096 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sat, 22 May 2021 14:21:55 +0100 Subject: [PATCH] python3Packages.jupyter_server: disable failing tests on darwin --- pkgs/development/python-modules/jupyter_server/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/jupyter_server/default.nix b/pkgs/development/python-modules/jupyter_server/default.nix index 50f193c2058c..e444b2ea3c0d 100644 --- a/pkgs/development/python-modules/jupyter_server/default.nix +++ b/pkgs/development/python-modules/jupyter_server/default.nix @@ -1,4 +1,5 @@ { lib +, stdenv , buildPythonPackage , fetchPypi , pythonOlder @@ -71,6 +72,9 @@ buildPythonPackage rec { "test_list_formats" "test_base_url" "test_culling" + ] ++ lib.optionals stdenv.isDarwin [ + # attempts to use trashcan, build env doesn't allow this + "test_delete" ]; meta = with lib; {