72 lines
1.2 KiB
Nix
72 lines
1.2 KiB
Nix
{ 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.0.9";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sabuhish";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-2Nb+FzmhsKvauT/yOCLHCEld8r+6niu9kV6EmjhC6S0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aioredis
|
|
aiosmtplib
|
|
blinker
|
|
email_validator
|
|
fakeredis
|
|
fastapi
|
|
httpx
|
|
jinja2
|
|
pydantic
|
|
python-multipart
|
|
];
|
|
|
|
checkInputs = [
|
|
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";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|