18 buildPythonPackage rec {
19 pname = "django-celery-beat";
23 disabled = pythonOlder "3.8";
25 src = fetchFromGitHub {
27 repo = "django-celery-beat";
28 rev = "refs/tags/v${version}";
29 hash = "sha256-XWcmKQXNw8eoGkld77E3rHpR9ofa1i2qO/JI8Hnpi9M=";
32 pythonRelaxDeps = [ "django" ];
34 build-system = [ setuptools ];
53 "t/unit/test_schedulers.py"
56 pythonImportsCheck = [ "django_celery_beat" ];
59 description = "Celery Periodic Tasks backed by the Django ORM";
60 homepage = "https://github.com/celery/django-celery-beat";
61 changelog = "https://github.com/celery/django-celery-beat/releases/tag/v${version}";
62 license = licenses.bsd3;
63 maintainers = with maintainers; [ onny ];