Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 22 lines 620 B view raw
1{ lib, buildPythonPackage, fetchPypi, isPy3k, six, httplib2, requests }: 2 3buildPythonPackage rec { 4 pname = "mailmanclient"; 5 version = "3.3.2"; 6 disabled = !isPy3k; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "4082ac0c66d7f7bee15751fe2564098b971177c0013e66d0c8ceee1ebdcb5592"; 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; [ peti globin qyliss ]; 21 }; 22}