mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 22:53:42 +00:00
923a94aba4
The package wouldn't fail itself but others depending on it would: https://hydra.nixos.org/build/229774404/nixlog/4/tail
49 lines
856 B
Nix
49 lines
856 B
Nix
{ lib
|
|
, python3
|
|
, fetchPypi
|
|
, mailman
|
|
}:
|
|
|
|
with python3.pkgs;
|
|
buildPythonPackage rec {
|
|
pname = "mailman-hyperkitty";
|
|
version = "1.2.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "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"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Mailman archiver plugin for HyperKitty";
|
|
homepage = "https://gitlab.com/mailman/mailman-hyperkitty";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ globin qyliss ];
|
|
};
|
|
}
|