mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
41 lines
1.0 KiB
Bash
41 lines
1.0 KiB
Bash
# Copyright 2023-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=flit
|
|
PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Verify certificates using native system trust stores"
|
|
HOMEPAGE="
|
|
https://github.com/sethmlarson/truststore/
|
|
https://pypi.org/project/truststore/
|
|
"
|
|
SRC_URI="
|
|
https://github.com/sethmlarson/truststore/archive/v${PV}.tar.gz
|
|
-> ${P}.gh.tar.gz
|
|
"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
|
|
# The vast majority of tests require Internet access.
|
|
PROPERTIES="test_network"
|
|
RESTRICT="test"
|
|
|
|
BDEPEND="
|
|
test? (
|
|
dev-python/aiohttp[${PYTHON_USEDEP}]
|
|
dev-python/httpx[${PYTHON_USEDEP}]
|
|
dev-python/pyopenssl[${PYTHON_USEDEP}]
|
|
dev-python/requests[${PYTHON_USEDEP}]
|
|
dev-python/trustme[${PYTHON_USEDEP}]
|
|
dev-python/urllib3[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
EPYTEST_PLUGINS=( pytest-{asyncio,httpserver,rerunfailures} )
|
|
distutils_enable_tests pytest
|