python313Packages.fastapi-mail: 1.5.0 -> 1.5.8 (#457491)

This commit is contained in:
Fabian Affolter
2025-11-16 20:44:41 +00:00
committed by GitHub
@@ -3,6 +3,7 @@
aiosmtplib,
blinker,
buildPythonPackage,
cryptography,
email-validator,
fakeredis,
fetchFromGitHub,
@@ -13,27 +14,27 @@
pydantic,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
redis,
regex,
starlette,
}:
buildPythonPackage rec {
pname = "fastapi-mail";
version = "1.5.0";
version = "1.5.8";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "sabuhish";
repo = "fastapi-mail";
tag = version;
hash = "sha256-v8cf4GlYAdl5+iD7hJHW+FuDN/I/VygWaaZLEotDNCU=";
hash = "sha256-xxArFytTJKLTlBjR3T+c1OTpK3vSgIrpRJqQEcFs4J4=";
};
pythonRelaxDeps = [
"aiosmtplib"
"cryptography"
"email-validator"
"pydantic"
];
@@ -42,11 +43,13 @@ buildPythonPackage rec {
dependencies = [
aiosmtplib
blinker
cryptography
email-validator
fakeredis
jinja2
pydantic
pydantic-settings
regex
starlette
];
@@ -72,7 +75,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Module for sending emails and attachments";
homepage = "https://github.com/sabuhish/fastapi-mail";
changelog = "https://github.com/sabuhish/fastapi-mail/releases/tag/${version}";
changelog = "https://github.com/sabuhish/fastapi-mail/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};