mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
pythonPackages.flower: fix broken
This commit is contained in:
parent
9c43942caf
commit
0218a3a1d5
|
@ -35,11 +35,13 @@ buildPythonPackage rec {
|
|||
|
||||
checkInputs = [ mock ];
|
||||
|
||||
pythonImportsCheck = [ "flower" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Celery Flower";
|
||||
homepage = "https://github.com/mher/flower";
|
||||
license = licenses.bsdOriginal;
|
||||
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
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue