pythonPackages.tqdm: Fix build on i686 architecture (#119608)

This commit is contained in:
Sebastian Jordan 2021-04-16 15:58:49 +02:00 committed by GitHub
parent d7ffdde842
commit 2e6b1f573f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
{ lib { lib
, stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, setuptools_scm , setuptools_scm
@ -30,10 +31,11 @@ buildPythonPackage rec {
pytest-timeout pytest-timeout
# tests of optional features # tests of optional features
numpy numpy
pandas
rich rich
tkinter tkinter
]; ] ++
# pandas is not supported on i686
lib.optional (!stdenv.isi686) pandas;
# Remove performance testing. # Remove performance testing.
# Too sensitive for on Hydra. # Too sensitive for on Hydra.