python310Packages.mailmanclient: add pythonImportsCheck

- specify license
- adjust inputs 
- disable on older Python releases
This commit is contained in:
Fabian Affolter 2022-10-24 10:17:01 +02:00 committed by GitHub
parent 2c5942b265
commit 062bc0d32e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,22 +1,41 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k, six, httplib2, requests }:
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, requests
, typing-extensions
}:
buildPythonPackage rec {
pname = "mailmanclient";
version = "3.3.4";
disabled = !isPy3k;
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-0y31HXjvU/bwy0s0PcDOlrX1RdyTTnk41ceD4A0R4p4=";
hash = "sha256-0y31HXjvU/bwy0s0PcDOlrX1RdyTTnk41ceD4A0R4p4=";
};
propagatedBuildInputs = [ six httplib2 requests ];
propagatedBuildInputs = [
requests
] ++ lib.optionals (pythonOlder "3.8") [
typing-extensions
];
# Tests require a running Mailman instance
doCheck = false;
pythonImportsCheck = [
"mailmanclient"
];
meta = with lib; {
homepage = "https://www.gnu.org/software/mailman/";
description = "REST client for driving Mailman 3";
license = licenses.lgpl3;
platforms = platforms.linux;
homepage = "https://www.gnu.org/software/mailman/";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ globin qyliss ];
platforms = platforms.linux;
};
}