Unverified Commit 20053cff authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #198481 from marsam/update-launchpadlib

python310Packages.launchpadlib: 1.10.17 -> 1.10.18
parents 1ec96f77 9619856a
Loading
Loading
Loading
Loading
+12 −3
Original line number Diff line number Diff line
@@ -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";