1b3ab7f747c308336344d840923cbbdd44a27f25
[gentoo.git] /
1 # Copyright 1999-2020 Gentoo Authors
2 # Distributed under the terms of the GNU General Public License v2
3
4 EAPI=6
5
6 PYTHON_COMPAT=( python2_7 python3_6 )
7
8 inherit distutils-r1
9
10 MY_PN="XStatic-Patternfly-Bootstrap-Treeview"
11 MY_P="${MY_PN}-${PV}"
12
13 DESCRIPTION="XStatic-Patternfly-Bootstrap-Treeview package"
14 HOMEPAGE="https://pypi.org/project/XStatic-Patternfly-Bootstrap-Treeview"
15 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
16
17 LICENSE="MIT"
18 SLOT="0"
19 KEYWORDS="~amd64 ~x86"
20 IUSE="test"
21 RESTRICT="!test? ( test )"
22
23 RDEPEND="dev-python/xstatic[${PYTHON_USEDEP}]"
24
25 DEPEND="
26         ${RDEPEND}
27         dev-python/setuptools[${PYTHON_USEDEP}]"
28
29 S="${WORKDIR}/${MY_P}"
30
31 python_install() {
32         distutils-r1_python_install
33         find "${ED}" -name '*.pth' -delete || die
34 }