summaryrefslogtreecommitdiff
blob: d200c5e21af5429e85b81760a9ccf846e234a412 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1

DESCRIPTION="Python requests like API built on top of Twisted's HTTP client."
HOMEPAGE="https://github.com/dreid/${PN}"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc test"

COMMON_DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"

RDEPEND="${COMMON_DEPEND}
	>=dev-python/pyopenssl-0.11[${PYTHON_USEDEP}]
	>=dev-python/twisted-core-12.1.0[${PYTHON_USEDEP}]
	>=dev-python/twisted-web-12.1.0[${PYTHON_USEDEP}]
	dev-python/requests[${PYTHON_USEDEP}]
	dev-python/service_identity[${PYTHON_USEDEP}]"

DEPEND="${COMMON_DEPEND}
	doc? ( dev-python/sphinx
		${RDEPEND} )
	test? ( dev-python/mock[${PYTHON_USEDEP}] )"

python_compile_all() {
	use doc && emake -C "${S}/docs" html
}

python_install_all() {
	 use doc && dohtml -r "${S}/docs/_build/html/"*
}

python_test() {
	trial treq || die "Tests fail with ${EPYTHON}"
}