From 6e1e1ddf070a703c51f77ffa7aa176c339dc055a Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Sun, 27 Feb 2022 00:34:56 -0500 Subject: [PATCH] python3Packages.ipython: disable clipboard test on darwin (targeting master) --- pkgs/development/python-modules/ipython/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ipython/default.nix b/pkgs/development/python-modules/ipython/default.nix index cee9868cfacb..432f83e75cc5 100644 --- a/pkgs/development/python-modules/ipython/default.nix +++ b/pkgs/development/python-modules/ipython/default.nix @@ -26,7 +26,7 @@ , testpath }: -buildPythonPackage rec { +buildPythonPackage (rec { pname = "ipython"; version = "8.0.1"; format = "pyproject"; @@ -82,4 +82,8 @@ buildPythonPackage rec { license = licenses.bsd3; maintainers = with maintainers; [ bjornfor fridh ]; }; -} +} // lib.optionalAttrs stdenv.isDarwin { + disabledTests = [ + "test_clipboard_get" # uses pbpaste + ]; +})