Files
nixpkgs/pkgs/development/python-modules/aiosmtplib/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

48 lines
924 B
Nix

{
lib,
aiosmtpd,
buildPythonPackage,
fetchFromGitHub,
hypothesis,
hatchling,
pytest-asyncio_0,
pytestCheckHook,
pythonOlder,
trustme,
}:
buildPythonPackage rec {
pname = "aiosmtplib";
version = "5.0.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "cole";
repo = "aiosmtplib";
tag = "v${version}";
hash = "sha256-ICG7yVH2UcvQAsVGbxu7LibWUj/NEPV/f5iDc25XuzU=";
};
build-system = [ hatchling ];
nativeCheckInputs = [
aiosmtpd
hypothesis
pytest-asyncio_0
pytestCheckHook
trustme
];
pythonImportsCheck = [ "aiosmtplib" ];
meta = {
description = "Module which provides a SMTP client";
homepage = "https://github.com/cole/aiosmtplib";
changelog = "https://github.com/cole/aiosmtplib/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}