2020-01-10 12:19:14 -08:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, six, httplib2, requests }:
|
2019-08-26 08:41:02 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "mailmanclient";
|
2020-06-03 20:44:53 -07:00
|
|
|
version = "3.3.1";
|
2020-01-10 12:19:14 -08:00
|
|
|
disabled = !isPy3k;
|
2019-08-26 08:41:02 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-03 20:44:53 -07:00
|
|
|
sha256 = "0pjgzpvhdb6ql8asb20xr8d01m646zpghmcp9fmscks0n1k4di4g";
|
2019-08-26 08:41:02 -07:00
|
|
|
};
|
|
|
|
|
2019-10-27 08:10:41 -07:00
|
|
|
propagatedBuildInputs = [ six httplib2 requests ];
|
|
|
|
|
2019-08-26 13:51:33 -07:00
|
|
|
meta = with stdenv.lib; {
|
2019-10-22 11:33:58 -07:00
|
|
|
homepage = "https://www.gnu.org/software/mailman/";
|
2019-08-26 13:51:33 -07:00
|
|
|
description = "REST client for driving Mailman 3";
|
|
|
|
license = licenses.lgpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ peti globin ];
|
|
|
|
};
|
2019-08-26 08:41:02 -07:00
|
|
|
}
|