54 lines
967 B
Nix
54 lines
967 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, six
|
|
, requests
|
|
, django
|
|
, boto3
|
|
, python
|
|
, mock
|
|
, pytestCheckHook
|
|
, pytest-django
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-anymail";
|
|
version = "8.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "anymail";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-hLNILUV7qzqHfh7l3SJAoFveUIRSCHTjEQ3ZC3PhZUY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
requests
|
|
django
|
|
boto3
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
pytest-django
|
|
mock
|
|
];
|
|
|
|
disabledTests = [
|
|
# Require networking
|
|
"test_debug_logging"
|
|
"test_no_debug_logging"
|
|
];
|
|
|
|
pythonImportsCheck = [ "anymail" ];
|
|
|
|
DJANGO_SETTINGS_MODULE = "tests.test_settings.settings_3_2";
|
|
|
|
meta = with lib; {
|
|
description = "Django email backends and webhooks for Mailgun";
|
|
homepage = "https://github.com/anymail/django-anymail";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ onny ];
|
|
};
|
|
}
|