From 2e6b1f573f013d8a87c35031c598eabd33efd7a5 Mon Sep 17 00:00:00 2001 From: Sebastian Jordan Date: Fri, 16 Apr 2021 15:58:49 +0200 Subject: [PATCH] pythonPackages.tqdm: Fix build on i686 architecture (#119608) --- pkgs/development/python-modules/tqdm/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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.