diff --git a/pkgs/development/python-modules/tqdm/default.nix b/pkgs/development/python-modules/tqdm/default.nix index 950a618a527..70893dc541f 100644 --- a/pkgs/development/python-modules/tqdm/default.nix +++ b/pkgs/development/python-modules/tqdm/default.nix @@ -1,4 +1,5 @@ { lib +, stdenv , buildPythonPackage , fetchPypi , setuptools_scm @@ -30,10 +31,11 @@ buildPythonPackage rec { pytest-timeout # tests of optional features numpy - pandas rich tkinter - ]; + ] ++ + # pandas is not supported on i686 + lib.optional (!stdenv.isi686) pandas; # Remove performance testing. # Too sensitive for on Hydra.