2015-03-07 22:23:18 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2014-09-17 16:17:05 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-11 00:17:55 +03:00
|
|
|
# $Id$
|
2014-09-17 16:17:05 +04:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
PYTHON_COMPAT=(python{2_7,3_{3,4}})
|
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="JSON-RPC transport implementation for python"
|
|
|
|
HOMEPAGE="https://github.com/pavlov99/json-rpc"
|
|
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="MIT"
|
|
|
|
SLOT="0"
|
2015-03-07 22:23:18 +03:00
|
|
|
KEYWORDS="amd64"
|
2014-09-17 16:17:05 +04:00
|
|
|
IUSE="test"
|
|
|
|
|
2015-03-26 10:46:04 +03:00
|
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
|
|
|
test? (
|
2014-09-17 16:17:05 +04:00
|
|
|
dev-python/nose[${PYTHON_USEDEP}]
|
|
|
|
dev-python/mock[${PYTHON_USEDEP}]
|
|
|
|
)"
|
|
|
|
|
|
|
|
python_test() {
|
|
|
|
esetup.py test || die
|
|
|
|
}
|