blob: 523c2b909cd5f3ffb9ec721864cceb75e0f5f1f6 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5} pypy )
inherit distutils-r1
DESCRIPTION="A modern/fast Python SOAP client based on lxml / requests"
HOMEPAGE="http://docs.python-zeep.org/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-python/setuptools"
RDEPEND="${DEPEND}
>=dev-python/appdirs-1.4.0
>=dev-python/cached-property-1.0.0
>=dev-python/defusedxml-0.4.1
>=dev-python/isodate-0.5.4
>=dev-python/lxml-3.0.0
dev-python/pytz
>=dev-python/requests-2.7.0
>=dev-python/six-1.9.0"
src_install() {
distutils-r1_src_install
dodoc README.rst CHANGES
}
|