Unverified Commit 837a29ec authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

parents 52e7c77a b8c355a2
Loading
Loading
Loading
Loading
+9 −6
Original line number Diff line number Diff line
@@ -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 ];
  };