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
53 lines
922 B
Nix
53 lines
922 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchPypi,
|
|
mailman,
|
|
nixosTests,
|
|
}:
|
|
|
|
with python3.pkgs;
|
|
buildPythonPackage rec {
|
|
pname = "mailman-hyperkitty";
|
|
version = "1.2.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-+Nad+8bMtYKJbUCpppRXqhB1zdbvvFXTTHlwJLQLzDg=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
mailman
|
|
requests
|
|
zope-interface
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
nose2
|
|
];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} -m nose2 -v
|
|
'';
|
|
|
|
# There is an AssertionError
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"mailman_hyperkitty"
|
|
];
|
|
|
|
passthru.tests = { inherit (nixosTests) mailman; };
|
|
|
|
meta = with lib; {
|
|
description = "Mailman archiver plugin for HyperKitty";
|
|
homepage = "https://gitlab.com/mailman/mailman-hyperkitty";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ qyliss ];
|
|
};
|
|
}
|