Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
997 B
Nix
49 lines
997 B
Nix
{
|
|
lib,
|
|
aiosmtpd,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
mkdocs-material-extensions,
|
|
flask,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flask-mailman";
|
|
version = "1.1.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "waynerv";
|
|
repo = "flask-mailman";
|
|
tag = "v${version}";
|
|
hash = "sha256-0kD3rxFDJ7FcmBLVju75z1nf6U/7XfjiLD/oM/VP4jQ=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
flask
|
|
mkdocs-material-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
aiosmtpd
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "flask_mailman" ];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/waynerv/flask-mailman/blob/${src.rev}/CHANGELOG.md";
|
|
homepage = "https://github.com/waynerv/flask-mailman";
|
|
description = "Flask extension providing simple email sending capabilities";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ gador ];
|
|
};
|
|
}
|