python3Packages.dask: avoid pyarrow tests if it's broken

This commit is contained in:
Dmitry Kalinkin
2023-02-11 18:29:29 +00:00
parent 6c43205441
commit 7d324bd478
@@ -1,5 +1,6 @@
{ lib
, stdenv
, arrow-cpp
, bokeh
, buildPythonPackage
, click
@@ -70,13 +71,14 @@ buildPythonPackage rec {
};
nativeCheckInputs = [
fastparquet
pyarrow
pytestCheckHook
pytest-rerunfailures
pytest-xdist
scipy
zarr
] ++ lib.optionals (!arrow-cpp.meta.broken) [ # support is sparse on aarch64
fastparquet
pyarrow
];
dontUseSetuptoolsCheck = true;