2aa6bce7d9
He disappeared from GitHub and doesn't reply to emails.
48 lines
1023 B
Nix
48 lines
1023 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
six,
|
|
requests,
|
|
django,
|
|
boto3,
|
|
python,
|
|
mock,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-anymail";
|
|
version = "8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "anymail";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0zd4w707az36pp8wimlz6sfxwy9w190qp93brl78pva3rhnx5p97";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
requests
|
|
django
|
|
boto3
|
|
];
|
|
|
|
checkInputs = [ mock ];
|
|
checkPhase = ''
|
|
substituteInPlace setup.py --replace "tests_require=[" "tests_require=[], #"
|
|
export CONTINUOUS_INTEGRATION=1
|
|
export ANYMAIL_SKIP_TESTS="sparkpost"
|
|
${python.interpreter} setup.py test
|
|
'';
|
|
|
|
# this package allows multiple email backends
|
|
# sparkpost is missing because it's not packaged yet
|
|
meta = with lib; {
|
|
description = "Django email backends and webhooks for Mailgun";
|
|
homepage = "https://github.com/anymail/django-anymail";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|