mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-24 01:09:38 +01:00
30 lines
905 B
Bash
30 lines
905 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{6,7} )
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Read Android's binary format for XML files (AXML) and a decompiler for DEX"
|
|
HOMEPAGE="https://github.com/androguard/androguard"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-python/future[${PYTHON_USEDEP}]
|
|
>=dev-python/networkx-1.11[${PYTHON_USEDEP}]
|
|
dev-python/pygments[${PYTHON_USEDEP}]
|
|
dev-python/lxml[${PYTHON_USEDEP}]
|
|
dev-python/colorama[${PYTHON_USEDEP}]
|
|
dev-python/matplotlib[${PYTHON_USEDEP}]
|
|
>=dev-python/asn1crypto-0.24.0[${PYTHON_USEDEP}]
|
|
dev-python/click[${PYTHON_USEDEP}]
|
|
>=dev-python/pydot-1.4.1[${PYTHON_USEDEP}]
|
|
>=dev-python/ipython-5.0[${PYTHON_USEDEP}]"
|
|
|
|
DEPEND="${RDEPEND}
|
|
dev-python/setuptools[${PYTHON_USEDEP}]"
|