28 lines
664 B
Bash
28 lines
664 B
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
PYTHON_COMPAT=( python{2_7,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"
|
|
|
|
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}]"
|