Merge pull request #144807 from fabaff/fix-mailman-hyperkitty

python3Packages.mailman-hyperkitty: fix build
This commit is contained in:
Fabian Affolter 2021-11-06 10:36:06 +01:00 committed by GitHub
commit c31e299a0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,26 +1,50 @@
{ lib, buildPythonPackage, fetchPypi, mailman, mock }:
{ lib
, buildPythonPackage
, fetchPypi
, mailman
, mock
, nose2
, python
, requests
, zope_interface
}:
buildPythonPackage rec {
pname = "mailman-hyperkitty";
version = "1.1.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1lfqa9admhvdv71f528jmz2wl0i5cv77v6l64px2pm4zqr9ckkjx";
};
propagatedBuildInputs = [ mailman ];
checkInputs = [ mock ];
propagatedBuildInputs = [
mailman
requests
zope_interface
];
checkInputs = [
mock
nose2
];
checkPhase = ''
python -m nose2 -v
${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.gpl3;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ globin qyliss ];
};
}