python310Packages.django-celery-email: init at 3.0.0
This commit is contained in:
parent
17019dcf9a
commit
4e7b10b266
2 changed files with 49 additions and 0 deletions
|
@ -0,0 +1,47 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, django
|
||||
, django-appconf
|
||||
, celery
|
||||
, pytest-django
|
||||
, pytestCheckHook
|
||||
, python }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "django-celery-email";
|
||||
version = "3.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pmclanahan";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-LBavz5Nh2ObmIwLCem8nHvsuKgPwkzbS/OzFPmSje/M=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
django
|
||||
django-appconf
|
||||
celery
|
||||
];
|
||||
|
||||
DJANGO_SETTINGS_MODULE = "tests.settings";
|
||||
|
||||
checkInputs = [
|
||||
pytest-django
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
checkPhase = ''
|
||||
${python.executable} runtests.py
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "djcelery_email" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/pmclanahan/django-celery-email";
|
||||
description = "Django email backend that uses a celery task for sending the email";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ onny ];
|
||||
};
|
||||
}
|
|
@ -2344,6 +2344,8 @@ in {
|
|||
|
||||
django-cacheops = callPackage ../development/python-modules/django-cacheops { };
|
||||
|
||||
django-celery-email = callPackage ../development/python-modules/django-celery-email { };
|
||||
|
||||
django_classytags = callPackage ../development/python-modules/django_classytags { };
|
||||
|
||||
django-cleanup = callPackage ../development/python-modules/django-cleanup { };
|
||||
|
|
Loading…
Reference in a new issue