python310Packages.launchpadlib: 1.10.17 -> 1.10.18

This commit is contained in:
Mario Rodas 2022-10-28 04:20:00 +00:00
parent 7f9be6a505
commit 9619856afe

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";