diff options
Diffstat (limited to 'dev-python/arrow/arrow-0.7.0.ebuild')
-rw-r--r-- | dev-python/arrow/arrow-0.7.0.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-python/arrow/arrow-0.7.0.ebuild b/dev-python/arrow/arrow-0.7.0.ebuild new file mode 100644 index 0000000..c0b3291 --- /dev/null +++ b/dev-python/arrow/arrow-0.7.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 python{3_4,3_5} ) + +inherit distutils-r1 + +DESCRIPTION="Better dates and times in python" +HOMEPAGE="https://github.com/crsmithdev/arrow/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + >=dev-python/python-dateutil-2.1[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/simplejson[${PYTHON_USEDEP}] ) +" +# FIXME: missing for running unittests: +# dev-python/nose-cov-1.6[${PYTHON_USEDEP}] +# dev-python/chai |