depot/third_party/nixpkgs/pkgs/development/python-modules/launchpadlib/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

58 lines
1,008 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
isPy3k,
httplib2,
keyring,
lazr-restfulclient,
lazr-uri,
setuptools,
six,
testresources,
wadllib,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "launchpadlib";
version = "1.11.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-AYmMk3R3sMZKdTOK2wl3Ao1zRqigGesCPPaP7ZmFAUY=";
};
propagatedBuildInputs = [
httplib2
keyring
lazr-restfulclient
lazr-uri
setuptools
six
testresources
wadllib
];
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
export HOME=$TMPDIR
'';
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";
license = licenses.lgpl3Only;
maintainers = [ ];
};
}