50 lines
1.1 KiB
Bash
50 lines
1.1 KiB
Bash
# Copyright 2022-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{9..11} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Type hints for Numpy"
|
|
HOMEPAGE="
|
|
https://pypi.org/project/nptyping/
|
|
https://github.com/ramonhagenaars/nptyping/
|
|
"
|
|
SRC_URI="
|
|
https://github.com/ramonhagenaars/nptyping/archive/v${PV}.tar.gz
|
|
-> ${P}.gh.tar.gz
|
|
"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
|
|
|
|
RDEPEND="
|
|
dev-python/numpy[${PYTHON_USEDEP}]
|
|
$(python_gen_cond_dep '
|
|
dev-python/typing-extensions[${PYTHON_USEDEP}]
|
|
' 3.8 3.9)
|
|
"
|
|
BDEPEND="
|
|
test? (
|
|
dev-python/mypy[${PYTHON_USEDEP}]
|
|
dev-python/typeguard[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
EPYTEST_IGNORE=(
|
|
# TODO: package beartype?
|
|
tests/test_beartype.py
|
|
# TODO: package pyright?
|
|
tests/test_pyright.py
|
|
# test for... whether the release is on pypi?
|
|
# requires Internet + feedparser, meaningless for users
|
|
tests/test_package_info.py
|
|
# relies on Internet access to fetch packages for pip
|
|
tests/test_wheel.py
|
|
)
|
|
|
|
distutils_enable_tests pytest
|