1{ lib, buildPythonPackage, fetchPypi, isPy3k, six, httplib2, requests }:
2
3buildPythonPackage rec {
4 pname = "mailmanclient";
5 version = "3.3.3";
6 disabled = !isPy3k;
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "92fe624675e41f41f59de1208e0125dfaa8d062bbe6138bd7cd79e4dd0b6f85e";
11 };
12
13 propagatedBuildInputs = [ six httplib2 requests ];
14
15 meta = with 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; [ globin qyliss ];
21 };
22}