pythonPackages.tqdm: Fix build on i686 architecture (#119608)
This commit is contained in:
parent
d7ffdde842
commit
2e6b1f573f
@ -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.
|
||||||
|
Loading…
Reference in New Issue
Block a user