python312Packages.fastapi-mail: 1.4.2 -> 1.5.0

Changelog: https://github.com/sabuhish/fastapi-mail/releases/tag/1.5.0

Changed files
+4 -3
pkgs
development
python-modules
fastapi-mail
+4 -3
pkgs/development/python-modules/fastapi-mail/default.nix
···
buildPythonPackage rec {
pname = "fastapi-mail";
-
version = "1.4.2";
+
version = "1.5.0";
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "sabuhish";
repo = "fastapi-mail";
tag = version;
-
hash = "sha256-QypW7yE5jBkS1Q4XPIOktWnCmCXGoUzZF/SdWmFsPX8=";
+
hash = "sha256-v8cf4GlYAdl5+iD7hJHW+FuDN/I/VygWaaZLEotDNCU=";
};
pythonRelaxDeps = [
···
# Tests require access to /etc/resolv.conf
"test_default_checker"
"test_redis_checker"
+
"test_local_hostname_resolving"
];
pythonImportsCheck = [ "fastapi_mail" ];
···
description = "Module for sending emails and attachments";
homepage = "https://github.com/sabuhish/fastapi-mail";
changelog = "https://github.com/sabuhish/fastapi-mail/releases/tag/${version}";
-
license = with licenses; [ mit ];
+
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}