0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

python3Packages.ipython: disable clipboard test on darwin

This commit is contained in:
Martin Weinelt 2022-02-12 12:34:57 +01:00
parent 039dc928e6
commit 4c7c1975b6
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -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/";