mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 20:43:38 +02:00
sslyze: fix python 3.7 deps, https://github.com/nabla-c0d3/sslyze/issues/421
This commit is contained in:
parent
7656a10ea2
commit
93c71edb81
2 changed files with 5 additions and 3 deletions
|
|
@ -3,13 +3,13 @@
|
|||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{3,6} )
|
||||
PYTHON_COMPAT=( python3_{6,7} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
MY_PN=${PN/-/_}
|
||||
|
||||
DESCRIPTION="Typing Extensions – Backported and Experimental Type Hints for Python"
|
||||
DESCRIPTION="Backported and Experimental Type Hints for Python"
|
||||
HOMEPAGE="https://docs.python.org/3/library/typing.html https://pypi.org/project/typing-extensions/"
|
||||
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
|
||||
|
||||
|
|
|
|||
|
|
@ -19,8 +19,10 @@ DEPEND=""
|
|||
RDEPEND="=dev-python/nassl-3.0*[${PYTHON_USEDEP}]
|
||||
>=dev-python/cryptography-2.5[${PYTHON_USEDEP}]
|
||||
>=dev-python/tls_parser-1.2.0[${PYTHON_USEDEP}]
|
||||
$(python_gen_cond_dep 'dev-python/typing-extensions[${PYTHON_USEDEP}]' python3_6)
|
||||
$(python_gen_cond_dep 'dev-python/typing-extensions[${PYTHON_USEDEP}]' python3_{6,7)
|
||||
"
|
||||
#typing-extensions
|
||||
#https://github.com/nabla-c0d3/sslyze/issues/421
|
||||
|
||||
src_prepare(){
|
||||
rm -r tests
|
||||
|
|
|
|||
Loading…
Reference in a new issue