mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
29 lines
900 B
Bash
29 lines
900 B
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python{2_7,3_{5,6}} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A python library for using the MISP Rest API"
|
|
HOMEPAGE="https://github.com/MISP/PyMISP"
|
|
SRC_URI="https://github.com/MISP/PyMISP/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~mips ~x86"
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
RDEPEND="${PYTHON_DEPS}
|
|
$(python_gen_cond_dep 'dev-python/functools32[${PYTHON_USEDEP}]' python2_7)
|
|
$(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7)
|
|
dev-python/requests[${PYTHON_USEDEP}]
|
|
dev-python/jsonschema[${PYTHON_USEDEP}]
|
|
dev-python/six[${PYTHON_USEDEP}]
|
|
dev-python/python-dateutil[${PYTHON_USEDEP}]
|
|
dev-python/py2neo[${PYTHON_USEDEP}]
|
|
dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
|
|
dev-python/reportlab[${PYTHON_USEDEP}]"
|
|
|
|
S="${WORKDIR}"/PyMISP-${PV}
|