summaryrefslogtreecommitdiff
path: root/dev-python/electrum-aionostr
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/electrum-aionostr')
-rw-r--r--dev-python/electrum-aionostr/Manifest1
-rw-r--r--dev-python/electrum-aionostr/electrum-aionostr-0.1.0.ebuild36
2 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/electrum-aionostr/Manifest b/dev-python/electrum-aionostr/Manifest
index f3231cd42ef1..4ff9c620d948 100644
--- a/dev-python/electrum-aionostr/Manifest
+++ b/dev-python/electrum-aionostr/Manifest
@@ -1 +1,2 @@
DIST electrum_aionostr-0.0.11.tar.gz 22126 BLAKE2B 1b120fd01c526e7854ad944702d70aae9026c2f15bfac1a72034ee1212c706d58c86be29787a5998153a0fada47adeac1a1a0fb1cb7b8781adf908fbec262186 SHA512 8d1888c237ded63f8512f29d35f6da05eb3e7c2eaf6a16a1a503a09e6e224b15232e732da82775070e2fb4098982945deaa6eb6332ff0c9bd0d9e3828dfa962a
+DIST electrum_aionostr-0.1.0.tar.gz 25995 BLAKE2B 71e6a158c689e362aa6f4f20ab65c8101e1d3a423fe04b50a36bef83ac5598aebbafa44e892b928ee2a16cd8e496cb6c9682fa6137206f4e378b4d2c0c60dfa1 SHA512 b633932daad2c6580c5876ff3d2dbd75d07a2d0c0948e8c7a7e0d30a50de1802e3c8053b061e8eaabcffefb3152951ab6f483b0b14bf1a05edc1d4a649ff891f
diff --git a/dev-python/electrum-aionostr/electrum-aionostr-0.1.0.ebuild b/dev-python/electrum-aionostr/electrum-aionostr-0.1.0.ebuild
new file mode 100644
index 000000000000..7ede4499eb74
--- /dev/null
+++ b/dev-python/electrum-aionostr/electrum-aionostr-0.1.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="asyncio nostr client"
+HOMEPAGE="
+ https://pypi.org/project/electrum-aionostr/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ >=dev-python/click-8.2[${PYTHON_USEDEP}]
+ dev-python/electrum-ecc[${PYTHON_USEDEP}]
+ >=dev-python/aiohttp-3.11.0[${PYTHON_USEDEP}]
+ >=dev-python/aiohttp-socks-0.9.2[${PYTHON_USEDEP}]
+ >=dev-python/aiorpcx-0.22.0[${PYTHON_USEDEP}]
+"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+src_prepare() {
+ distutils-r1_src_prepare
+
+ # remove pins
+ sed -i -e 's:,<[0-9.]*::' pyproject.toml || die
+}