Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/google-api-python-client/
Date: Thu, 24 Feb 2022 08:52:09
Message-Id: 1645692721.d541a9f178aabf48466f616cc2da10377e7c4047.mgorny@gentoo
1 commit: d541a9f178aabf48466f616cc2da10377e7c4047
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 24 08:47:40 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 24 08:52:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d541a9f1
7
8 dev-python/google-api-python-client: Tested on py3.10
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../google-api-python-client-2.38.0-r1.ebuild | 47 ++++++++++++++++++++++
13 1 file changed, 47 insertions(+)
14
15 diff --git a/dev-python/google-api-python-client/google-api-python-client-2.38.0-r1.ebuild b/dev-python/google-api-python-client/google-api-python-client-2.38.0-r1.ebuild
16 new file mode 100644
17 index 000000000000..e48dbf2e8a66
18 --- /dev/null
19 +++ b/dev-python/google-api-python-client/google-api-python-client-2.38.0-r1.ebuild
20 @@ -0,0 +1,47 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DISTUTILS_USE_PEP517=setuptools
27 +PYTHON_COMPAT=( python3_{8..10} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Google API Client for Python"
32 +HOMEPAGE="https://github.com/googleapis/google-api-python-client"
33 +SRC_URI="https://github.com/googleapis/google-api-python-client/archive/v${PV}.tar.gz -> ${P}.tar.gz"
34 +
35 +LICENSE="Apache-2.0"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +
39 +RDEPEND="
40 + >=dev-python/httplib2-0.15[${PYTHON_USEDEP}]
41 + <dev-python/httplib2-1[${PYTHON_USEDEP}]
42 + dev-python/google-api-core[${PYTHON_USEDEP}]
43 + >=dev-python/google-auth-1.35.0[${PYTHON_USEDEP}]
44 + >=dev-python/google-auth-httplib2-0.1.0[${PYTHON_USEDEP}]
45 + >=dev-python/uritemplate-3.0.0[${PYTHON_USEDEP}]
46 + <dev-python/uritemplate-5[${PYTHON_USEDEP}]
47 +"
48 +BDEPEND="
49 + test? (
50 + dev-python/mock[${PYTHON_USEDEP}]
51 + dev-python/oauth2client[${PYTHON_USEDEP}]
52 + dev-python/pandas[${PYTHON_USEDEP}]
53 + dev-python/parameterized[${PYTHON_USEDEP}]
54 + )
55 +"
56 +
57 +distutils_enable_tests pytest
58 +
59 +python_test() {
60 + local EPYTEST_DESELECT=(
61 + # require Internet access (and credentials)
62 + tests/test_discovery.py::DiscoveryErrors::test_credentials_and_credentials_file_mutually_exclusive
63 + tests/test_discovery.py::DiscoveryFromDocument::test_api_endpoint_override_from_client_options_mapping_object
64 + )
65 +
66 + epytest tests
67 +}