blob: 4cbc66a7bb3d2cafddb6ca8eb3b43a24ecf45350 [file] [log] [blame]
# Copyright 2019-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( pypy3 python3_{6..9} )
inherit distutils-r1
DESCRIPTION="A high-performance immutable mapping type for Python"
HOMEPAGE="
https://github.com/MagicStack/immutables/
https://pypi.org/project/immutables/
"
SRC_URI="
https://github.com/MagicStack/${PN}/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="*"
distutils_enable_tests pytest
src_prepare() {
sed -i -e '/mypy/d' tests/conftest.py || die
distutils-r1_src_prepare
}
src_test() {
local EPYTEST_IGNORE=(
tests/test_mypy.py
)
rm -r immutables || die
distutils-r1_src_test
}