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
43 lines
825 B
Nix
43 lines
825 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchPypi,
|
|
nixosTests,
|
|
}:
|
|
|
|
with python3.pkgs;
|
|
|
|
buildPythonPackage rec {
|
|
pname = "postorius";
|
|
version = "1.3.10";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-GmbIqO+03LgbUxJ1nTStXrYN3t2MfvzbeYRAipfTW1o=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
django-mailman3
|
|
readme-renderer
|
|
]
|
|
++ readme-renderer.optional-dependencies.md;
|
|
nativeCheckInputs = [
|
|
beautifulsoup4
|
|
vcrpy
|
|
mock
|
|
];
|
|
|
|
# Tries to connect to database.
|
|
doCheck = false;
|
|
|
|
passthru.tests = { inherit (nixosTests) mailman; };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://docs.mailman3.org/projects/postorius";
|
|
description = "Web-based user interface for managing GNU Mailman";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ qyliss ];
|
|
};
|
|
}
|