fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
47 lines
955 B
Nix
47 lines
955 B
Nix
{
|
|
lib,
|
|
aiosmtpd,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
hypothesis,
|
|
poetry-core,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
trustme,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiosmtplib";
|
|
version = "3.0.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cole";
|
|
repo = "aiosmtplib";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-67Z+k+PBIGP2oGb/52dMtsapUsHufvFcX+wWiMj5Jsg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ poetry-core ];
|
|
|
|
nativeCheckInputs = [
|
|
aiosmtpd
|
|
hypothesis
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
trustme
|
|
];
|
|
|
|
pythonImportsCheck = [ "aiosmtplib" ];
|
|
|
|
meta = with lib; {
|
|
description = "Module which provides a SMTP client";
|
|
homepage = "https://github.com/cole/aiosmtplib";
|
|
changelog = "https://github.com/cole/aiosmtplib/releases/tag/v${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|