mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #198481 from marsam/update-launchpadlib
python310Packages.launchpadlib: 1.10.17 -> 1.10.18
This commit is contained in:
commit
20053cff0c
1 changed files with 12 additions and 3 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue