about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dask
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2023-02-11 02:07:25 +0000
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2023-02-11 18:29:29 +0000
commit7d324bd47850caad452353e10dd5d49f7e614d2a (patch)
tree002dc5a49f9439871e6b7fb6d4a402f1c1b7efb1 /pkgs/development/python-modules/dask
parent6c43205441353a01e778c9270896c05dc1a817b8 (diff)
python3Packages.dask: avoid pyarrow tests if it's broken
Diffstat (limited to 'pkgs/development/python-modules/dask')
-rw-r--r--pkgs/development/python-modules/dask/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/dask/default.nix b/pkgs/development/python-modules/dask/default.nix
index f859a43bd1e20..a43f1a5afb570 100644
--- a/pkgs/development/python-modules/dask/default.nix
+++ b/pkgs/development/python-modules/dask/default.nix
@@ -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;