python313Packages.fastapi-mail: 1.5.8 -> 1.6.1

Changelog: https://github.com/sabuhish/fastapi-mail/releases/tag/v1.6.1
This commit is contained in:
Fabian Affolter
2026-01-21 08:16:20 +01:00
parent ce83efa0c1
commit 4ec90dedaf
@@ -21,20 +21,21 @@
buildPythonPackage rec {
pname = "fastapi-mail";
version = "1.5.8";
version = "1.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "sabuhish";
repo = "fastapi-mail";
tag = version;
hash = "sha256-xxArFytTJKLTlBjR3T+c1OTpK3vSgIrpRJqQEcFs4J4=";
tag = "v${version}";
hash = "sha256-ruiUf+wGJRMLzmimb9oLi/tGV6UF9aa9G/iMgptSa9w=";
};
pythonRelaxDeps = [
"aiosmtplib"
"cryptography"
"email-validator"
"regex"
"pydantic"
];