python-mailman-hyperkitty: initial version 1.1.0
This commit is contained in:
parent
813674425c
commit
107af97c90
@ -0,0 +1,26 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, mailman, mock }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mailman-hyperkitty";
|
||||
version = "1.1.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1lfqa9admhvdv71f528jmz2wl0i5cv77v6l64px2pm4zqr9ckkjx";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ mailman ];
|
||||
checkInputs = [ mock ];
|
||||
|
||||
checkPhase = ''
|
||||
python -m nose2 -v
|
||||
'';
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Mailman archiver plugin for HyperKitty";
|
||||
homepage = https://gitlab.com/mailman/mailman-hyperkitty;
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ globin peti ];
|
||||
};
|
||||
}
|
@ -717,6 +717,8 @@ in {
|
||||
|
||||
mailmanclient = callPackage ../development/python-modules/mailmanclient { };
|
||||
|
||||
mailman-hyperkitty = callPackage ../development/python-modules/mailman-hyperkitty { };
|
||||
|
||||
manhole = callPackage ../development/python-modules/manhole { };
|
||||
|
||||
markerlib = callPackage ../development/python-modules/markerlib { };
|
||||
|
Loading…
Reference in New Issue
Block a user