nixpkgs/pkgs/development/python-modules/mailmanclient/default.nix

23 lines
611 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, isPy3k, six, httplib2, requests }:
2019-08-26 16:41:02 +01:00
buildPythonPackage rec {
pname = "mailmanclient";
version = "3.3.1";
disabled = !isPy3k;
2019-08-26 16:41:02 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "0pjgzpvhdb6ql8asb20xr8d01m646zpghmcp9fmscks0n1k4di4g";
2019-08-26 16:41:02 +01:00
};
propagatedBuildInputs = [ six httplib2 requests ];
2019-08-26 21:51:33 +01:00
meta = with stdenv.lib; {
homepage = "https://www.gnu.org/software/mailman/";
2019-08-26 21:51:33 +01:00
description = "REST client for driving Mailman 3";
license = licenses.lgpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ peti globin ];
};
2019-08-26 16:41:02 +01:00
}