1{ stdenv, buildPythonPackage, fetchPypi, isPy3k, six, httplib2, requests }:
2
3buildPythonPackage rec {
4 pname = "mailmanclient";
5 version = "3.3.1";
6 disabled = !isPy3k;
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "0pjgzpvhdb6ql8asb20xr8d01m646zpghmcp9fmscks0n1k4di4g";
11 };
12
13 propagatedBuildInputs = [ six httplib2 requests ];
14
15 meta = with stdenv.lib; {
16 homepage = "https://www.gnu.org/software/mailman/";
17 description = "REST client for driving Mailman 3";
18 license = licenses.lgpl3;
19 platforms = platforms.linux;
20 maintainers = with maintainers; [ peti globin ];
21 };
22}