diff options
author | 2023-09-06 04:27:13 +0200 | |
---|---|---|
committer | 2023-09-06 04:40:54 +0200 | |
commit | dbe9bad340a174a12e5c44f4e6d90e47b713ab0e (patch) | |
tree | f7c682e550f05c986eed485a778d05171b63cd76 /dev-python/wsaccel/wsaccel-0.6.6.ebuild | |
parent | dev-python/mkdocstrings-python: Bump to 1.6.2 (diff) | |
download | gentoo-dbe9bad340a174a12e5c44f4e6d90e47b713ab0e.tar.gz gentoo-dbe9bad340a174a12e5c44f4e6d90e47b713ab0e.tar.bz2 gentoo-dbe9bad340a174a12e5c44f4e6d90e47b713ab0e.zip |
dev-python/wsaccel: Bump to 0.6.6
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/wsaccel/wsaccel-0.6.6.ebuild')
-rw-r--r-- | dev-python/wsaccel/wsaccel-0.6.6.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-python/wsaccel/wsaccel-0.6.6.ebuild b/dev-python/wsaccel/wsaccel-0.6.6.ebuild new file mode 100644 index 000000000000..74b7274a1965 --- /dev/null +++ b/dev-python/wsaccel/wsaccel-0.6.6.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..11} ) + +inherit distutils-r1 + +DESCRIPTION="Accelerator for ws4py, autobahn and tornado" +HOMEPAGE=" + https://github.com/methane/wsaccel/ + https://pypi.org/project/wsaccel/ +" +SRC_URI=" + https://github.com/methane/wsaccel/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +SLOT="0" +LICENSE="Apache-2.0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" + +BDEPEND=" + dev-python/cython[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +python_test() { + cd tests || die + epytest +} |