-
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/monarchmoney: new package, add 0.1.13
Signed-off-by: Andreas Billmeier <b@edevau.net>
- Loading branch information
Showing
3 changed files
with
49 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
DIST monarchmoney-0.1.13.tar.gz 23197 BLAKE2B 73f478a5d896b47fd6913daf147b7d7c485f9b545817d23b009a2c153ff0472ff77f9f5402a2bb47e8ec8ed079bfb21e5a8ffadfb2ec1c541877a9c2b106a547 SHA512 998bb443754446b74529655c1a640a9650c114f74b5f1e4965fa6b4a109c996df88b24c4688c973be7700dc801510832c90e2872809852966d7cfd4294bc1582 | ||
EBUILD monarchmoney-0.1.13.ebuild 685 BLAKE2B ac78405d308ac96f22a609d55645e2d23e1374b8d126d626de23de1903a0262ea05947134f1a12551c69bcd83708eea35ec5144f02605dc7f6800b95289988d1 SHA512 2b27106224c27ca693d8a80be70dc3e38168a93c42ae6d8a6e58c6c69f3abdd5093d9f49476088a0a71fb5ff6083aba766a484e485e96adb6b63c19cd65e7f0e | ||
MISC metadata.xml 523 BLAKE2B c5ccc18b772b0743a1fab001f9275527c661da08b0e859465901628dc7e7d5408b58102214baa40213419ac01f498dd8e697e31b84097f6d7962a1b3e55dfe56 SHA512 adafdeadd0ad3cacd591a0aa6831fcfae9f11816e8970cefe5350e26c96f48b27f15cddadc7dba8d41a4021a327cbf01be62508dceafea9494773fab111b83dd |
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,16 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="project"> | ||
<email>b@edevau.net</email> | ||
<name>Andreas Billmeier</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="pypi">monarchmoney</remote-id> | ||
<remote-id type="github">hammem/monarchmoney</remote-id> | ||
<maintainer status="unknown"> | ||
<email>hammem@users.noreply.github.com</email> | ||
<name>hammem</name> | ||
</maintainer> | ||
</upstream> | ||
</pkgmetadata> |
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,30 @@ | ||
# 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="Monarch Money API for Python" | ||
HOMEPAGE="https://github.com/hammem/monarchmoney https://pypi.org/project/monarchmoney/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.md" | ||
|
||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}] | ||
dev-python/gql[${PYTHON_USEDEP}] | ||
dev-python/oathtool[${PYTHON_USEDEP}]" | ||
|
||
src_prepare() { | ||
echo "aiohttp>=3.8.4" >> requirements.txt || die | ||
eapply_user | ||
} | ||
|
||
distutils_enable_tests pytest |