python310Packages.django-celery-beat: init at 2.3.0

This commit is contained in:
Jonas Heinrich 2022-06-17 10:32:31 +02:00 committed by Yt
parent b5ddb31b52
commit 14d6f394fd
2 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1,51 @@
{ lib
, fetchPypi
, buildPythonPackage
, python-crontab
, celery
, django-timezone-field
, tzdata
, ephem
, pytest-timeout
, pytest-django
, case
, pytestCheckHook }:
buildPythonPackage rec {
pname = "django-celery-beat";
version = "2.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-uiT4btlWug7itDI3pJMD6/Wqfg+wzLfgVCt+MaRj3Lo=";
};
propagatedBuildInputs = [
python-crontab
celery
django-timezone-field
tzdata
];
checkInputs = [
ephem
pytest-timeout
pytest-django
case
pytestCheckHook
];
disabledTestPaths = [
# Connection error
"t/unit/test_schedulers.py"
];
pythonImportsCheck = [ "django_celery_beat" ];
meta = with lib; {
description = "Celery Periodic Tasks backed by the Django ORM";
homepage = "https://github.com/celery/django-celery-beat";
license = licenses.bsd3;
maintainers = with maintainers; [ onny ];
};
}

View file

@ -2346,6 +2346,8 @@ in {
django-cacheops = callPackage ../development/python-modules/django-cacheops { };
django-celery-beat = callPackage ../development/python-modules/django-celery-beat { };
django-celery-email = callPackage ../development/python-modules/django-celery-email { };
django_classytags = callPackage ../development/python-modules/django_classytags { };