# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/flask-security/flask-security-1.7.0.ebuild,v 1.1 2014/01/14 03:48:29 patrick Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) RESTRICT="test" # bah ... inherit distutils-r1 MY_PN="Flask-Security" MY_P="${MY_PN}-${PV}" DESCRIPTION="Simple security for Flask apps" HOMEPAGE="http://pythonhosted.org/${MY_PN}/ https://pypi.python.org/pypi/${MY_PN}" SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" RDEPEND="dev-python/flask[${PYTHON_USEDEP}] dev-python/itsdangerous[${PYTHON_USEDEP}] dev-python/passlib[${PYTHON_USEDEP}] dev-python/flask-login[${PYTHON_USEDEP}] dev-python/flask-mail[${PYTHON_USEDEP}] dev-python/flask-wtf[${PYTHON_USEDEP}] dev-python/flask-principal[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/nose[${PYTHON_USEDEP}] dev-python/flask-sqlalchemy[${PYTHON_USEDEP}] dev-python/flask-mongoengine[${PYTHON_USEDEP}] dev-python/flask-peewee[${PYTHON_USEDEP}] dev-python/py-bcrypt[${PYTHON_USEDEP}] )" S="${WORKDIR}/${MY_P}" python_test() { nosetests || die "Testing failed with ${EPYTHON}" }