void-packages/srcpkgs/python-twitter/template
2018-03-30 13:56:25 +02:00

30 lines
863 B
Bash

# Template file for 'python-twitter'
pkgname=python-twitter
version=3.4.1
revision=1
noarch=yes
build_style=python-module
pycompile_module="twitter"
hostmakedepends="python-setuptools python3-setuptools"
depends="python-future python-requests python-requests-oauthlib"
short_desc="Python2 wrapper around the Twitter API"
maintainer="Peter Bui <pnutzh4x0r@gmail.com>"
license="Apache-2.0"
homepage="https://github.com/bear/python-twitter"
distfiles="${PYPI_SITE}/p/${pkgname}/${pkgname}-${version}.tar.gz"
checksum=038c2af8131fab423e242386c7ee30334ef6b71cacea1c8f74f095a09cef6979
pre_build() {
sed -i '/setup_requires=/d' setup.py
}
python3-twitter_package() {
noarch=yes
pycompile_module="twitter"
depends="python3-future python3-requests python3-requests-oauthlib"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/lib/python3*
}
}