dev-python/google-nest-sdm: add 3.0.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-10-20 17:07:13 +02:00
committed by Andreas Billmeier
parent 2fd104f729
commit 7ecd8dc002
2 changed files with 39 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
DIST google_nest_sdm-2.2.4.tar.gz 38834 BLAKE2B d88a71ab962fee57d2c84dcd35f10c523aceb60f266ec43eb352c1f4b882b1040b3bfbaa4211a99188b8ebcf1b2986c7d93e019c002b2bc0a00828b65f0caf6a SHA512 c8f38c94366a186291fdc747ea719d43441dd6228123286cac4a5ffafa9e0888cccdc2288b083ef77c71aa5f3f1753e05860b86f12fa86c4ae8c2e05d2581487
DIST google_nest_sdm-3.0.2.tar.gz 37377 BLAKE2B df3114f3fa436f8dba71a9d0deef01f3076b70ec8b6c5524333a59f98971d58a973764c2fdbe95e6d78c21dcf101f062c96bc2389e213cdab41ce9cfbc888097 SHA512 21ddb30d41704b97776a2f1bc60ffab4483f8dbacdfde4c3b9df1741bee0a903e324cac308e1c7c7b133752f1019cc1a713986ff513fcb099ed64e987b8c0315
EBUILD google-nest-sdm-2.2.4.ebuild 986 BLAKE2B a40909951e578b57ff235bd94c68eac4e5d010c14a6d7eaa979a6d6315edf165724340651d60499715d59064cfa642de32bd2934a0af8a4696decad219de27a0 SHA512 8eff43a177a22f88926102291c2d901bc471a4304db2539ccf15f47ffa027b21c98dc4ddb42fad0bbab7eb7c33207e115968e0f127c49fff553c95a9e37ef051
EBUILD google-nest-sdm-3.0.2.ebuild 986 BLAKE2B 85940185284af3a26326c4195344a4ca9199527f21d9173e2368366816a334bd80ea46b577dc77f44450ca70d8566b3220853bbdf74b42b74f751884c9b0dd6e SHA512 7b4da27873e4b09b804b5f877b36edd43ac5b5fc5ec5fc6e7175ff6c59ad5873e92f440d6475a3a7bdea29c6b668f535e433985e49395e5fa5c26530b7477243
MISC metadata.xml 534 BLAKE2B dd5c01a07de6d7860437be20335d832ae3a499c9833098cf503e568e2376dc458993e2c2d101da289d2f33036a2e0c369085ce6a38d40ec5033395e332638749 SHA512 4cdb9fdbe19c7f912aaf6f9b1cf6f7f012f1ce68304262c9121d22c7a7c7c1081866ffbf0edf2c84fa208930b07b37a957ca899f903b76994b85ce959b77dfb3

View File

@@ -0,0 +1,37 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Library for the Google Nest SDM API"
HOMEPAGE="https://github.com/allenporter/python-google-nest-sdm https://pypi.org/project/google-nest-sdm/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.7.4[${PYTHON_USEDEP}]
>=dev-python/google-auth-1.22.0[${PYTHON_USEDEP}]
>=dev-python/google-auth-oauthlib-0.4.1[${PYTHON_USEDEP}]
>=dev-python/google-cloud-pubsub-2.1.0[${PYTHON_USEDEP}]
>=dev-python/requests-oauthlib-1.3.0[${PYTHON_USEDEP}]
~dev-python/pyyaml-6.0[${PYTHON_USEDEP}]
>=dev-python/pydantic-1.10.4[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest