-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/4034 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
4 changed files
with
30 additions
and
5 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,3 +1,5 @@ | ||
DIST krakenex-2.1.0.tar.gz 36564 BLAKE2B fe9db35478759a6601486094529f30d9842da42ac892b89394982a97d41d00204bf2e1c72c7623aadded87b549b09cef3c3c94b064f950fdf7f16a162fe54c03 SHA512 7af68c038ac6c091bf187fbff6c9c2d6c8680ca39c6c4dc62af3172014b6d5a7ca0013942eccd7a85d5c4593f55a7a3fed9780d5abac5b10664dde14f253b65d | ||
EBUILD krakenex-2.1.0.ebuild 653 BLAKE2B bff5f2d66f2dc7e7119c1a5a2e3dd89c59d8446184cba0fc3804c984f20620d07b9c7e74471f49c2189b9c643203b42bb81eb25bfd4188b2dfca9f2637a07d64 SHA512 cc6f365115f4eca6ff48872ec8ed3b358c0b47ccc7d03043dd237131fa1d7bbace6195452c43e6f4515e8cf91878fdacabde1e85ef7a48f2b993de403eab8ccb | ||
DIST krakenex-2.2.2.tar.gz 39463 BLAKE2B 9346414b8d6aedfeb0ea4b22fee81a11e2a5bfa2c6e4ee7858b963e9969a0b238252fbc9d1e31d79ecb97b12dcd6340342bba48d866dae0a1d48f201a7925052 SHA512 25fe8b06a7ab9efae3a5607457db77b3da6550c79c2d33edc4e45c11f1fc290c5eabeabcd51e9b1d63999a409af1de761e59f1fa4fed19155f0986846f9b4c13 | ||
EBUILD krakenex-2.1.0.ebuild 653 BLAKE2B 422feb07159659e6eff03c0b93fd1cb8a446a6c3cd3b07ec2487ee3101d6ae5870e582ad1f7e5d26108bba84ee5d015e282a86347cad1bd7be63d15288b129cf SHA512 435d5db382a42edb66fd19b3290f11835262f33795204d5d734574491fd03b7f7c5362aaf54dc470686bb920162c0caeaa83c13bbc4543bb0897769247ef9daa | ||
EBUILD krakenex-2.2.2.ebuild 551 BLAKE2B 688edca319c32c0d2cac2b8a316d24a5bc4604d6aa5e02156e789d84a2dcad7ffe898c246dd9e8a32ba1ce77a4d8aa7249250d128a4f8671a39db13f9d664c69 SHA512 7df85b1959f72ce55519ee35c1cf9c216714546d66cb7a2d5b44b279ce1f32c5cb865f8d316b485fa0369ca6101da3c44967e766e0dc1ea7e22ba3bda323f07a | ||
MISC metadata.xml 527 BLAKE2B 47e69243abdc6a4161d41bde892b86e573ec500f85d5473aa672f9da6d9bf358044796d36b3f3df3a1106d630659bcbdf4f8f70de6548175be4be76f92d40c15 SHA512 714dedbcff0c28d921516f4c4a51cb5b655ef7cf0252992abdeb10f73cdd2877c55f138ed6f2cdcae5e0fec8ac3487b3f1fcb02a119f6f00a6dd5168a41a1aaf |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{11..13} ) | ||
DISTUTILS_USE_PEP517=setuptools | ||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="kraken.com cryptocurrency exchange API" | ||
HOMEPAGE="https://github.com/veox/python3-krakenex https://pypi.org/project/krakenex/" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.rst" | ||
|
||
RDEPEND=">=dev-python/requests-2.18.2[${PYTHON_USEDEP}]" | ||
|
||
distutils_enable_tests pytest |