60 lines
1.0 KiB
Nix
60 lines
1.0 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, six
|
|
, requests
|
|
, django
|
|
, boto3
|
|
, mock
|
|
, pytestCheckHook
|
|
, pytest-django
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-anymail";
|
|
version = "10.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "anymail";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-k4C82OYm2SdjxeLScrkkitumjYgWkMNFlNeGW+C1Z8o=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
requests
|
|
django
|
|
boto3
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
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 ];
|
|
};
|
|
}
|