mailman: add the Postorious web UI

This commit is contained in:
Peter Simons
2019-08-26 17:41:02 +02:00
parent a9b4e7592f
commit 22af3829a4
5 changed files with 64 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
{ stdenv, buildPythonPackage, fetchPypi, six, httplib2 }:
buildPythonPackage rec {
pname = "mailmanclient";
version = "3.2.2";
src = fetchPypi {
inherit pname version;
sha256 = "0xsrzdrsmfhnxv68zwm1g6awk7in08k6yhkyd27ipn0mq1wjm5jd";
};
propagatedBuildInputs = [ six httplib2 ];
}