Install this version:
emerge -a =dev-python/Rx-4.0.4
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-python/Rx-4.0.4
Or alternatively:
emerge --autounmask-write -a =dev-python/Rx-4.0.4
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( pypy3 python3_{11..13} )
inherit distutils-r1 virtualx
MY_P="RxPY-${PV}"
DESCRIPTION="Reactive Extensions for Python"
HOMEPAGE="http://reactivex.io/"
SRC_URI="https://github.com/ReactiveX/RxPY/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
DISTUTILS_USE_SETUPTOOLS=pyproject.toml
S="${WORKDIR}/${MY_P}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
test? ( dev-python/pytest-asyncio[${PYTHON_USEDEP}] )
"
distutils_enable_tests pytest
src_test() {
virtx distutils-r1_src_test
}
src_prepare() {
sed -i "s/version\ =\ \"0.0.0\"/version\ =\ \"${PV}\"/g" pyproject.toml \
|| die "couldn't patch project version"
default
}
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | RxPY-4.0.4.tar.gz | 916572 bytes | https://github.com/ReactiveX/RxPY/archive/v4.0.4.tar.gz |