159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
65 lines
1.3 KiB
Nix
65 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
celery,
|
|
cron-descriptor,
|
|
django-timezone-field,
|
|
ephem,
|
|
fetchFromGitHub,
|
|
pytest-django,
|
|
pytest-timeout,
|
|
pytestCheckHook,
|
|
python-crontab,
|
|
pythonOlder,
|
|
setuptools,
|
|
tzdata,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-celery-beat";
|
|
version = "2.7.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "celery";
|
|
repo = "django-celery-beat";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-XWcmKQXNw8eoGkld77E3rHpR9ofa1i2qO/JI8Hnpi9M=";
|
|
};
|
|
|
|
pythonRelaxDeps = [ "django" ];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
cron-descriptor
|
|
python-crontab
|
|
celery
|
|
django-timezone-field
|
|
tzdata
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
ephem
|
|
pytest-timeout
|
|
pytest-django
|
|
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";
|
|
changelog = "https://github.com/celery/django-celery-beat/releases/tag/v${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ onny ];
|
|
};
|
|
}
|