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

This commit is contained in:
Dmitry Kalinkin 2022-02-27 00:34:56 -05:00
parent f23d45dcfd
commit 6e1e1ddf07
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";
@ -82,4 +82,8 @@ buildPythonPackage rec {
license = licenses.bsd3;
maintainers = with maintainers; [ bjornfor fridh ];
};
}
} // lib.optionalAttrs stdenv.isDarwin {
disabledTests = [
"test_clipboard_get" # uses pbpaste
];
})