summaryrefslogtreecommitdiff
path: root/dev-python/URLObject/URLObject-2.4.2-r1.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-04-20 11:01:09 +0200
committerMichał Górny <mgorny@gentoo.org>2017-04-20 11:18:13 +0200
commitba8562cf64248970666a2ea217cc1f481eb8a48f (patch)
tree0bd8cad75ccf4816a01cd8b1795aa6d479897f94 /dev-python/URLObject/URLObject-2.4.2-r1.ebuild
parent9c0dc5f6db2a268e664842fc2a609dec500f38cf (diff)
downloadgentoo-ba8562cf64248970666a2ea217cc1f481eb8a48f.tar.gz
gentoo-ba8562cf64248970666a2ea217cc1f481eb8a48f.tar.bz2
gentoo-ba8562cf64248970666a2ea217cc1f481eb8a48f.zip
dev-python/URLObject: include tests
Use github-generated tarball instead of pypi because the latter lacks test subdirectory. Run tests using nosetests.
Diffstat (limited to 'dev-python/URLObject/URLObject-2.4.2-r1.ebuild')
-rw-r--r--dev-python/URLObject/URLObject-2.4.2-r1.ebuild33
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/URLObject/URLObject-2.4.2-r1.ebuild b/dev-python/URLObject/URLObject-2.4.2-r1.ebuild
new file mode 100644
index 000000000000..1e98b597b70e
--- /dev/null
+++ b/dev-python/URLObject/URLObject-2.4.2-r1.ebuild
@@ -0,0 +1,33 @@
+# 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} )
+
+inherit distutils-r1
+
+GITHUB_P=${P,,}
+DESCRIPTION="A utility class for manipulating URLs"
+HOMEPAGE="https://pypi.python.org/pypi/URLObject"
+# note: pypi tarball lacks tests
+# https://github.com/zacharyvoase/urlobject/issues/39
+SRC_URI="https://github.com/zacharyvoase/urlobject/archive/v${PV}.tar.gz -> ${GITHUB_P}.tar.gz"
+
+LICENSE="BSD"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="
+ ${RDEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+
+S=${WORKDIR}/${GITHUB_P}
+
+python_test() {
+ nosetests -v || die "Tests fail with ${EPYTHON}"
+}