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
1 changed files with 4 additions and 2 deletions

View File

@ -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.