From 403faa7fd0f41a506d706bd1e963dc4898e07c0a Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Sun, 27 Feb 2022 21:01:52 -0500 Subject: [PATCH] Revert "python3Packages.ipython: disable clipboard test on darwin (targeting master)" This reverts commit 6e1e1ddf070a703c51f77ffa7aa176c339dc055a. cc #162047 --- pkgs/development/python-modules/ipython/default.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/ipython/default.nix b/pkgs/development/python-modules/ipython/default.nix index 29e8627a7df2..c1c0b049dc8c 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"; @@ -87,8 +87,4 @@ buildPythonPackage (rec { license = licenses.bsd3; maintainers = with maintainers; [ bjornfor fridh ]; }; -} // lib.optionalAttrs stdenv.isDarwin { - disabledTests = [ - "test_clipboard_get" # uses pbpaste - ]; -}) +}