blob: 3ec65224c840919f42d7238eb8d47db6990e0bb9 [file] [log] [blame]
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
MY_PN=python-${PN}
MY_P=${MY_PN}-${PV}
DESCRIPTION="Toolkit for safe and simple cryptography"
HOMEPAGE="http://www.keyczar.org https://pypi.python.org/pypi/python-keyczar/"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}
>=dev-python/pycrypto-2.0[${PYTHON_USEDEP}]
dev-python/pyasn1[${PYTHON_USEDEP}]"
S=${WORKDIR}/${MY_P}
python_test() {
cd "${S}"/tests/keyczar_tests
${PYTHON} alltests.py || die "tests fail with ${EPYTHON}"
}