22 buildPythonPackage rec {
23 pname = "fastapi-mail";
27 disabled = pythonOlder "3.8";
29 src = fetchFromGitHub {
31 repo = "fastapi-mail";
32 rev = "refs/tags/${version}";
33 hash = "sha256-2iTZqZIxlt1GKhElasTcnys18UbNNDwHoZziHBOIGBo=";
42 substituteInPlace pyproject.toml \
43 --replace-fail 'version = "1.2.5"' 'version = "${version}"'
46 build-system = [ poetry-core ];
68 # Tests require access to /etc/resolv.conf
69 "test_default_checker"
73 pythonImportsCheck = [ "fastapi_mail" ];
76 description = "Module for sending emails and attachments";
77 homepage = "https://github.com/sabuhish/fastapi-mail";
78 changelog = "https://github.com/sabuhish/fastapi-mail/releases/tag/${version}";
79 license = with licenses; [ mit ];
80 maintainers = with maintainers; [ fab ];