mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-06-29 12:28:06 -07:00
Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
30 lines
718 B
Bash
30 lines
718 B
Bash
# Copyright 2018-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{6,7,8} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Tenable API Library for Tenable.io and SecurityCenter"
|
|
HOMEPAGE="https://github.com/tenable/pyTenable"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="
|
|
dev-python/python-dateutil[${PYTHON_USEDEP}]
|
|
dev-python/requests[${PYTHON_USEDEP}]
|
|
dev-python/requests_pkcs12[${PYTHON_USEDEP}]
|
|
dev-python/semver[${PYTHON_USEDEP}]
|
|
dev-python/defusedxml[${PYTHON_USEDEP}]
|
|
dev-python/docker-py[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
# requires networking and API endpoint
|
|
RESTRICT="test"
|