From b8c355a24dc617817410fe1101ba9473af04bab2 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 16 Nov 2025 21:33:17 +0100 Subject: [PATCH] python313Packages.fastapi-mail: 1.5.0 -> 1.5.8 Changelog: https://github.com/sabuhish/fastapi-mail/releases/tag/1.5.8 --- .../python-modules/fastapi-mail/default.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/fastapi-mail/default.nix b/pkgs/development/python-modules/fastapi-mail/default.nix index 4fb8c7b1b621..4311c27f9bdb 100644 --- a/pkgs/development/python-modules/fastapi-mail/default.nix +++ b/pkgs/development/python-modules/fastapi-mail/default.nix @@ -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 ]; };