Files
2017-12-25 19:18:39 +01:00

30 lines
728 B
Bash

# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python{3_4,3_5,3_6} )
inherit distutils-r1
DESCRIPTION="Python CryptoCurrency trading library"
HOMEPAGE="https://github.com/ccxt/ccxt"
SRC_URI="https://github.com/ccxt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
S="${S}/python"
# Tests fail because they require private keys.
RESTRICT="test"
DEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="
dev-python/requests[${PYTHON_USEDEP}]
dev-python/aiodns[${PYTHON_USEDEP}]
dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/chardet[${PYTHON_USEDEP}]"