25 lines
736 B
Nix
25 lines
736 B
Nix
# WARNING: This file was automatically generated. You should avoid editing it.
|
|
# If you run pynixify again, the file will be either overwritten or
|
|
# deleted, and you will lose the changes you made to it.
|
|
|
|
{ buildPythonPackage, celery, django, django_appconf, fetchPypi, lib }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-celery-email";
|
|
version = "3.0.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1klfl4y90rfv5dd3h77xgxm9jjhax5n2197zl2wc6b4mh2xcnijm";
|
|
};
|
|
|
|
propagatedBuildInputs = [ django celery django_appconf ];
|
|
|
|
# TODO FIXME
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "An async Django email backend using celery";
|
|
homepage = "https://github.com/pmclanahan/django-celery-email";
|
|
};
|
|
}
|