summaryrefslogtreecommitdiff
path: root/dev-python/arrow/arrow-1.1.1-r1.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-11-09 14:45:15 +0100
committerMichał Górny <mgorny@gentoo.org>2021-11-09 15:01:17 +0100
commit2c046498aa6e07f7467bb2b5d7b85612bb08ff1d (patch)
tree2f38422ef22f9d2a43805b9de07fcdf5dc379789 /dev-python/arrow/arrow-1.1.1-r1.ebuild
parent030453ada9c3fb409ffa1736fa1649f24d808930 (diff)
downloadgentoo-2c046498aa6e07f7467bb2b5d7b85612bb08ff1d.tar.gz
gentoo-2c046498aa6e07f7467bb2b5d7b85612bb08ff1d.tar.bz2
gentoo-2c046498aa6e07f7467bb2b5d7b85612bb08ff1d.zip
dev-python/arrow: Remove stale pypy3.7 deps
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/arrow/arrow-1.1.1-r1.ebuild')
-rw-r--r--dev-python/arrow/arrow-1.1.1-r1.ebuild32
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/arrow/arrow-1.1.1-r1.ebuild b/dev-python/arrow/arrow-1.1.1-r1.ebuild
new file mode 100644
index 000000000000..a43170a7e87e
--- /dev/null
+++ b/dev-python/arrow/arrow-1.1.1-r1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Better dates and times for Python"
+HOMEPAGE="https://github.com/arrow-py/arrow/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~s390 sparc x86"
+
+RDEPEND="
+ >=dev-python/python-dateutil-2.7.0[${PYTHON_USEDEP}]"
+
+BDEPEND="
+ test? (
+ dev-python/pytest-mock[${PYTHON_USEDEP}]
+ dev-python/pytz[${PYTHON_USEDEP}]
+ dev-python/simplejson[${PYTHON_USEDEP}]
+ )"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ sed -i -e '/addopts/d' tox.ini || die
+ distutils-r1_src_prepare
+}