mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 16:33:09 +01:00
36 lines
910 B
Bash
36 lines
910 B
Bash
# Copyright 1999-2018 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
|
|
EGO_PN=github.com/dropbox/${PN}-python
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A Python SDK for integrating with the Dropbox API v2."
|
|
HOMEPAGE="https://github.com/dropbox/dropbox-sdk-python"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
EGIT_COMMIT="v${PV}"
|
|
SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=dev-python/requests-2.16.2[${PYTHON_USEDEP}]
|
|
>=dev-python/six-1.3.0[${PYTHON_USEDEP}]"
|
|
DEPEND="${RDEPEND}
|
|
dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
#test? 'pytest-runner',
|
|
# 'pytest',
|
|
|
|
S="${WORKDIR}/${PN}-python-${PV}"
|
|
|
|
python_prepare_all() {
|
|
sed -e '/setup_requires=setup_requires/d' -i setup.py
|
|
sed -e '/tests_require=test_reqs/d' -i setup.py
|
|
distutils-r1_python_prepare_all
|
|
}
|