-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-python/weatherflow4py: add 0.2.17
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3162 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
3 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
DIST weatherflow4py-0.1.12.tar.gz 6702 BLAKE2B fd4a49cf79a61a5d30c2cb74545e905afb2cae3ed05d7e8efce691c8639ea5fbf1c7b59560950548e31df4997980675783358aec61395bdf0f706ba61f7472b9 SHA512 ff281f6591c9c64880a45ee55478dc44e61e5c922ad351dadf0422ec555b6710d95c5e05d0007156ca48053ab911d8ed9618f8f736d90859fec65b363242a235 | ||
DIST weatherflow4py-0.1.17.tar.gz 7510 BLAKE2B 1459b999664e9b249e4db8b20ccd2fe02c8b8e066e7e2406193a61a9209a3dd8e9509fd441e106fd8d571a6b2c69baa07bfc32eec8146e6a8dec0def4b6428e8 SHA512 b8ce314208d7ca2bccf94ddfb09f9ceae0c8a9c5607468929fa954696fadb5c40eaaa37411b5533c49706ef363da82f7c2d34c8a79c820b1877c6b9622701887 | ||
DIST weatherflow4py-0.2.17.tar.gz 13506 BLAKE2B 0b46ab77fb00292c0c2d4643cf2319714bc0f27c1832f002a72668740cdbb469dcb16050840bba5a66cc978303fdc68c0013ebb3381c63fc12caaceb6eca3813 SHA512 ef0154572480a6fc1fd4241ce179b517ef564764eda5476346f9b1367d1dc6bcdcf3fe6fe84f64c6d8c77993e0c0bac69f4ee97964f0ef9a232d7a176713fbe2 | ||
EBUILD weatherflow4py-0.1.12.ebuild 661 BLAKE2B f283cfecd2cc8186c6dda945e7f53ec9204254a18dd5645a04b6fc199acac5af0dc388b4a896b7c3c93b74d2c7b9ed092807ce99ddec41b929cf167e670f8fca SHA512 3b4d872dd7db12914b2c917ffe0eff56498f734d002ed1a9bf1254b6d47224da2a821e75c603d9692794641cfd2144ffa4b12495ec20ab01945a8ac891f98a52 | ||
EBUILD weatherflow4py-0.1.17.ebuild 661 BLAKE2B f283cfecd2cc8186c6dda945e7f53ec9204254a18dd5645a04b6fc199acac5af0dc388b4a896b7c3c93b74d2c7b9ed092807ce99ddec41b929cf167e670f8fca SHA512 3b4d872dd7db12914b2c917ffe0eff56498f734d002ed1a9bf1254b6d47224da2a821e75c603d9692794641cfd2144ffa4b12495ec20ab01945a8ac891f98a52 | ||
EBUILD weatherflow4py-0.2.17.ebuild 702 BLAKE2B 982ab2d7223f95754e7fdadf9579cca7892781835de41ff66aaf21d2b4e00ba71c8abe917de2191e77a6e0b6c18f19aaecaba1c986846c98c514946a49da3f54 SHA512 2715ea72da5c5d5465671195a720384a984696f48dcd6638ca7c603f751ad83e3c72829d8736999a029a6a9708f9911471e64021107bbdc22ae60dd648f2374a | ||
MISC metadata.xml 463 BLAKE2B 9e286e7483ff9f33a0e1b49283d3be267ef8b3b52371cd7dc7cec8ea93b5c4f9cdc1c39149a54e845936ed1c03d3dfd021b6e28373f1626ac7a4b493012b7f82 SHA512 6cb562999ede2160fa0edf1b1152b4c30d0c51dfa4648efa9c8fe42f0e7474df81d74c02ab19280551154f05d5304daf705a6eebca768771ae81334834557a9f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{11..12} ) | ||
DISTUTILS_USE_PEP517=poetry | ||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="Simple Python library used by Home Assistant to interact with the WeatherFlow RESTApi" | ||
HOMEPAGE=" https://pypi.org/project/weatherflow4py/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.md" | ||
|
||
RDEPEND=">=dev-python/dataclasses-json-0.6.3[${PYTHON_USEDEP}] | ||
>=dev-python/aiohttp-3.9.1[${PYTHON_USEDEP}] | ||
>=dev-python/marshmallow-3.20.1[${PYTHON_USEDEP}] | ||
dev-python/websockets[${PYTHON_USEDEP}]" | ||
|
||
distutils_enable_tests pytest |