tqdm: Disable pandas on RISC-V

This commit is contained in:
Zhaofeng Li 2021-06-08 20:34:10 -07:00
parent e14843556c
commit beb3446a1b

View File

@ -34,8 +34,8 @@ buildPythonPackage rec {
rich
tkinter
] ++
# pandas is not supported on i686
lib.optional (!stdenv.isi686) pandas;
# pandas is not supported on i686 or risc-v
lib.optional (!stdenv.isi686 && !stdenv.hostPlatform.isRiscV) pandas;
# Remove performance testing.
# Too sensitive for on Hydra.