summaryrefslogtreecommitdiff
blob: e57faa05ac284f6f439f4ed79c20d1d44a468394 (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
33
34
35
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

MY_PN="Flask-Paranoid"
MY_P=${MY_PN}-${PV}

DISTUTILS_IN_SOURCE_BUILD=1
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1

DESCRIPTION="Simple user session protection extension for Flask"
HOMEPAGE="https://github.com/miguelgrinberg/flask-paranoid/"
SRC_URI="mirror://pypi/F/${MY_PN}/${MY_P}.tar.gz"

LICENSE="BSD"

SLOT="0"

KEYWORDS="~amd64 ~x86"
IUSE="test"

RDEPEND="dev-python/flask[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
	test? ( dev-python/tox[${PYTHON_USEDEP}] )
"

S=${WORKDIR}/${MY_P}

python_test() {
	TOXENV=$(echo ${PYTHON} | sed 's:[^py0-9]::g')
	echo "This is the setting of PYTHON: ${TOXENV}; and some stuff"
	tox || die "Testing failed with ${EPYTHON}"
}