mailman: add the Postorious web UI

This commit is contained in:
Peter Simons
2019-08-26 21:12:56 +02:00
parent a9b4e7592f
commit 22af3829a4
5 changed files with 64 additions and 1 deletions
+25
View File
@@ -0,0 +1,25 @@
{ stdenv, buildPythonPackage, fetchPypi, beautifulsoup4, vcrpy, mock
, django-mailman3, mailmanclient
}:
buildPythonPackage rec {
pname = "postorius";
version = "1.2.4";
src = fetchPypi {
inherit pname version;
sha256 = "1722lnscxfl8wdigf5d80d1qmd5gblr439wa989jxlww0wkjg9fl";
};
buildInputs = [ beautifulsoup4 vcrpy mock ];
propagatedBuildInputs = [ django-mailman3 ];
doCheck = false;
meta = {
homepage = https://www.gnu.org/software/mailman/;
description = "Web-based user interface for managing GNU Mailman";
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ peti ];
};
}