forked from mirrors/nixpkgs
python3Packages.ipython: disable clipboard test on darwin (targeting master)
This commit is contained in:
parent
f23d45dcfd
commit
6e1e1ddf07
|
@ -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
|
||||
];
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue