Revert "python3Packages.ipython: disable clipboard test on darwin (targeting master)"

This reverts commit 6e1e1ddf07.

cc #162047
This commit is contained in:
Dmitry Kalinkin 2022-02-27 21:01:52 -05:00
parent 6787116890
commit 403faa7fd0
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333

View file

@ -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
];
})
}