nixpkgs/pkgs/development/python-modules/django-anymail/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

55 lines
971 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, six
, requests
, django
, boto3
, python
, mock
, pytestCheckHook
, pytest-django
}:
buildPythonPackage rec {
pname = "django-anymail";
version = "9.0";
src = fetchFromGitHub {
owner = "anymail";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-qEYBHsaHo1gmrsa6q7DQiUJurC7cXhv5e/SQ7R3Tkzc=";
};
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 ];
};
}