summaryrefslogtreecommitdiff
path: root/dev-python/asyncstdlib/asyncstdlib-3.13.0.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2024-10-24 06:25:10 +0200
committerMichał Górny <mgorny@gentoo.org>2024-10-24 06:32:48 +0200
commit24478757e99e03ddec59447d218e7917828f6661 (patch)
treee80f71d9baf93b0d6a416e3dbc9c3bfe75b0073f /dev-python/asyncstdlib/asyncstdlib-3.13.0.ebuild
parentb11b268972198fa9787eb6d5a8ac888e6ec389cf (diff)
downloadgentoo-24478757e99e03ddec59447d218e7917828f6661.tar.gz
gentoo-24478757e99e03ddec59447d218e7917828f6661.tar.bz2
gentoo-24478757e99e03ddec59447d218e7917828f6661.zip
dev-python/asyncstdlib: Bump to 3.13.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/asyncstdlib/asyncstdlib-3.13.0.ebuild')
-rw-r--r--dev-python/asyncstdlib/asyncstdlib-3.13.0.ebuild32
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/asyncstdlib/asyncstdlib-3.13.0.ebuild b/dev-python/asyncstdlib/asyncstdlib-3.13.0.ebuild
new file mode 100644
index 000000000000..a2eea4011b68
--- /dev/null
+++ b/dev-python/asyncstdlib/asyncstdlib-3.13.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="The missing async toolbox"
+HOMEPAGE="
+ https://github.com/maxfischer2781/asyncstdlib/
+ https://pypi.org/project/asyncstdlib/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="
+ test? (
+ dev-python/typing-extensions[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ epytest
+}