From 4c7c1975b6bae77549f7c3564fa0c09d074d90dd Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 12 Feb 2022 12:34:57 +0100 Subject: [PATCH] python3Packages.ipython: disable clipboard test on darwin --- pkgs/development/python-modules/ipython/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/ipython/default.nix b/pkgs/development/python-modules/ipython/default.nix index cee9868cfacb..c1c0b049dc8c 100644 --- a/pkgs/development/python-modules/ipython/default.nix +++ b/pkgs/development/python-modules/ipython/default.nix @@ -76,6 +76,11 @@ buildPythonPackage rec { testpath ]; + disabledTests = lib.optionals (stdenv.isDarwin) [ + # FileNotFoundError: [Errno 2] No such file or directory: 'pbpaste' + "test_clipboard_get" + ]; + meta = with lib; { description = "IPython: Productive Interactive Computing"; homepage = "http://ipython.org/";