26 lines
736 B
Nix
26 lines
736 B
Nix
|
# WARNING: This file was automatically generated. You should avoid editing it.
|
||
|
# If you run pynixify again, the file will be either overwritten or
|
||
|
# deleted, and you will lose the changes you made to it.
|
||
|
|
||
|
{ buildPythonPackage, celery, dateutil, fetchPypi, lib, redis, tenacity }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "celery-redbeat";
|
||
|
version = "2.0.0";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "030r39cmn2lfm1ysyvnya0ys63sfqwlk130qsdnndwjxpr0nk3fb";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ redis celery dateutil tenacity ];
|
||
|
|
||
|
# TODO FIXME
|
||
|
doCheck = false;
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "A Celery Beat Scheduler using Redis for persistent storage";
|
||
|
homepage = "https://github.com/sibson/redbeat";
|
||
|
};
|
||
|
}
|