# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( pypy3 python3_{10..12} ) PYPI_NO_NORMALIZE=1 PYPI_PN=Pint inherit distutils-r1 pypi DESCRIPTION="Operate and manipulate physical quantities in Python" HOMEPAGE="https://github.com/hgrecco/pint" S=$WORKDIR/${PYPI_PN}-$PV LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="babel uncertainties test" DEPEND="" RDEPEND="${DEPEND} babel? ( dev-python/Babel[${PYTHON_USEDEP}] ) uncertainties? ( dev-python/uncertainties[${PYTHON_USEDEP}] ) test? ( dev-python/pytest-subtests[${PYTHON_USEDEP}] ) $(python_gen_cond_dep ' dev-python/typing-extensions[${PYTHON_USEDEP}] ' 3.10 pypy3) " RESTRICT="!test? ( test )" PATCHES=( "${FILESDIR}/fix-np-unc-coupling.patch" ) distutils_enable_tests pytest src_prepare () { default sed -i "s/PACKAGE_VERSION/${PV}/" ${S}/${PN}/__init__.py }