Merge pull request #198481 from marsam/update-launchpadlib

python310Packages.launchpadlib: 1.10.17 -> 1.10.18
This commit is contained in:
Mario Rodas 2022-10-29 14:17:11 -05:00 committed by GitHub
commit 20053cff0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,11 +15,12 @@
buildPythonPackage rec {
pname = "launchpadlib";
version = "1.10.17";
version = "1.10.18";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-QoyxsxkJmt/anZ3dfQk3Zn4dRgkOxcgA6aIkFf8asYg=";
sha256 = "sha256-uFRv4XrKUUfSRq0gd4xKVUTrR6+RsYUVJDePpo8tcmQ=";
};
propagatedBuildInputs = [
@ -33,7 +34,9 @@ buildPythonPackage rec {
wadllib
];
checkInputs = [ pytestCheckHook ];
checkInputs = [
pytestCheckHook
];
preCheck = ''
export HOME=$TMPDIR
@ -41,6 +44,12 @@ buildPythonPackage rec {
doCheck = isPy3k;
pythonImportsCheck = [
"launchpadlib"
"launchpadlib.apps"
"launchpadlib.credentials"
];
meta = with lib; {
description = "Script Launchpad through its web services interfaces. Officially supported";
homepage = "https://help.launchpad.net/API/launchpadlib";