diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-09-17 09:38:12 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-09-17 10:43:10 +0200 |
commit | 748cddd1a3e5f862bf59d3bc774af7e5a5ad579c (patch) | |
tree | d020a884cdacfa5dd46166590933cc82a8425ee5 /dev-python/pytools/pytools-2017.4-r1.ebuild | |
parent | a8a2a9e14ce362112ae3527aac3987bd49e4f5de (diff) | |
download | gentoo-748cddd1a3e5f862bf59d3bc774af7e5a5ad579c.tar.gz gentoo-748cddd1a3e5f862bf59d3bc774af7e5a5ad579c.tar.xz |
dev-python/pytools: Fix missing [sqlite] on Python
Closes: https://bugs.gentoo.org/631174
Diffstat (limited to 'dev-python/pytools/pytools-2017.4-r1.ebuild')
-rw-r--r-- | dev-python/pytools/pytools-2017.4-r1.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/pytools/pytools-2017.4-r1.ebuild b/dev-python/pytools/pytools-2017.4-r1.ebuild new file mode 100644 index 00000000000..c4c9c02a72b --- /dev/null +++ b/dev-python/pytools/pytools-2017.4-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) +PYTHON_REQ_USE='sqlite' + +inherit distutils-r1 + +DESCRIPTION="Collection of tools missing from the Python standard library" +HOMEPAGE="https://mathema.tician.de/software/pytools/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND=" + >=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}] + >=dev-python/decorator-3.2.0[${PYTHON_USEDEP}] + >=dev-python/numpy-1.6.0[${PYTHON_USEDEP}] + >=dev-python/six-1.8.0[${PYTHON_USEDEP}] +" +DEPEND=" + >=dev-python/setuptools-0.7.2[${PYTHON_USEDEP}] + test? ( + ${RDEPEND} + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-runner[${PYTHON_USEDEP}] + ) +" + +python_test() { + py.test -v || die "Tests fail with ${EPYTHON}" +} |