aboutsummaryrefslogtreecommitdiff
path: root/dev-python/robotframework-faker/robotframework-faker-4.0.0.ebuild
blob: f7b574db728360978f41c6ef860c70377688f6c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright 2017 Kenny Ballou
# Distributed under the terms of the GNU General Public License v3
# $Id$

EAPI=6
PYTHON_COMPAT=(python2_7)

inherit distutils-r1

MY_P=${PN}_${PV}

DESCRIPTION="Robot Framework Keyword Library for Faker"
HOMEPAGE="https://github.com/guykisel/robotframework-faker"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""

RDEPEND="dev-python/Faker[${PYTHON_USEDEP}]
		 dev-python/robotframework[${PYTHON_USEDEP}]
		 dev-python/wrapt[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
		dev-python/setuptools[${PYTHON_USEDEP}]"

src_prepare() {
	pushd "${S}"
	mv tests robotframework-faker/.
	popd
	distutils-r1_python_prepare_all
}