django-celery-results: init at 2.4.0

This commit is contained in:
Bastien Riviere 2022-12-19 11:30:10 +01:00 committed by Frederik Rietdijk
parent c79f6e7f94
commit c946e0b9c8
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, fetchPypi
, buildPythonPackage
, celery
, django
, pythonOlder
}:
buildPythonPackage rec {
pname = "django_celery_results";
version = "2.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-dapRlw21aRy/JCxqD/UMjN9BniZc0Om3cjNdBkNsS5k=";
};
propagatedBuildInputs = [
celery
django
];
# Tests need access to a database.
doCheck = false;
meta = with lib; {
description = "Celery result back end with django";
homepage = "https://github.com/celery/django-celery-results";
license = licenses.bsd3;
maintainers = with maintainers; [ babariviere ];
};
}

View file

@ -2495,6 +2495,8 @@ self: super: with self; {
django-celery-email = callPackage ../development/python-modules/django-celery-email { };
django-celery-results = callPackage ../development/python-modules/django-celery-results { };
django_classytags = callPackage ../development/python-modules/django_classytags { };
django-cleanup = callPackage ../development/python-modules/django-cleanup { };