{ lib , aioredis , aiosmtplib , blinker , buildPythonPackage , email-validator , fakeredis , fastapi , fetchFromGitHub , httpx , jinja2 , poetry-core , pydantic , pytest-asyncio , pytestCheckHook , python-multipart , pythonOlder }: buildPythonPackage rec { pname = "fastapi-mail"; version = "1.2.8"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "sabuhish"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-9u7+TYO0TmzyLcCxZL86ibC3hNH5b722t5fWimRHaW0="; }; postPatch = '' substituteInPlace pyproject.toml \ --replace 'version = "1.2.2"' 'version = "${version}"' \ --replace 'aiosmtplib = "^2.0"' 'aiosmtplib = "*"' \ --replace 'pydantic = "^1.8"' 'pydantic = "*"' \ --replace 'starlette = "^0.22.0"' 'starlette = "*"' \ --replace 'black = "^22.12.0"' "" ''; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ aioredis aiosmtplib blinker email-validator fakeredis fastapi httpx jinja2 pydantic python-multipart ]; nativeCheckInputs = [ pytest-asyncio pytestCheckHook ]; disabledTests = [ # Tests require access to /etc/resolv.conf "test_default_checker" "test_redis_checker" ]; pythonImportsCheck = [ "fastapi_mail" ]; 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}"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; }