2019-08-26 17:41:02 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, six, httplib2 }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "mailmanclient";
|
2019-10-24 08:47:37 +02:00
|
|
|
version = "3.3.0";
|
2019-08-26 17:41:02 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 08:47:37 +02:00
|
|
|
sha256 = "c8736cbe152ae1bd58b46ccfbcafb6a1e301513530772e7fda89f91d1e5c1ae9";
|
2019-08-26 17:41:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six httplib2 ];
|
2019-08-26 22:51:33 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "http://www.gnu.org/software/mailman/";
|
|
|
|
description = "REST client for driving Mailman 3";
|
|
|
|
license = licenses.lgpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ peti globin ];
|
|
|
|
};
|
2019-08-26 17:41:02 +02:00
|
|
|
}
|