pythonPackages.flower: fix broken

This commit is contained in:
Sandro Jäckel 2021-03-07 03:14:35 +01:00
parent 9c43942caf
commit 0218a3a1d5
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -35,11 +35,13 @@ buildPythonPackage rec {
checkInputs = [ mock ]; checkInputs = [ mock ];
pythonImportsCheck = [ "flower" ];
meta = with lib; { meta = with lib; {
description = "Celery Flower"; description = "Celery Flower";
homepage = "https://github.com/mher/flower"; homepage = "https://github.com/mher/flower";
license = licenses.bsdOriginal; license = licenses.bsdOriginal;
maintainers = [ maintainers.arnoldfarkas ]; maintainers = [ maintainers.arnoldfarkas ];
broken = (celery.version == "5.0.2"); # currently broken with celery>=5.0 by https://github.com/mher/flower/pull/1021 broken = (celery.version >= "5.0.2"); # currently broken with celery>=5.0 by https://github.com/mher/flower/pull/1021
}; };
} }