mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.django-anymail: init at 6.1.0
This commit is contained in:
parent
002fc5fa06
commit
9c8716af68
2 changed files with 49 additions and 0 deletions
47
pkgs/development/python-modules/django-anymail/default.nix
Normal file
47
pkgs/development/python-modules/django-anymail/default.nix
Normal file
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
stdenv,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
six,
|
||||
requests,
|
||||
django,
|
||||
boto3,
|
||||
python,
|
||||
mock,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "django-anymail";
|
||||
version = "6.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "anymail";
|
||||
repo = pname;
|
||||
rev = "v6.1";
|
||||
sha256 = "04jgz3qnsnba18rlqgxyb2g9128pk3ivflnj6695kibxg724fcpv";
|
||||
};
|
||||
|
||||
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 stdenv.lib; {
|
||||
description = "Django email backends and webhooks for Mailgun";
|
||||
homepage = https://github.com/anymail/django-anymail;
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ ivegotasthma ];
|
||||
};
|
||||
}
|
|
@ -3240,6 +3240,8 @@ in {
|
|||
|
||||
django-allauth = callPackage ../development/python-modules/django-allauth { };
|
||||
|
||||
django-anymail = callPackage ../development/python-modules/django-anymail {};
|
||||
|
||||
django_appconf = callPackage ../development/python-modules/django_appconf { };
|
||||
|
||||
django-auth-ldap = callPackage ../development/python-modules/django-auth-ldap { };
|
||||
|
|
Loading…
Reference in a new issue