mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
27 lines
952 B
Text
27 lines
952 B
Text
# Maintainer: prspkt <prspkt@protonmail.com>
|
|
pkgname=py3-twitter
|
|
_pkgname=python-twitter
|
|
pkgver=3.5
|
|
pkgrel=7
|
|
pkgdesc="Python3 wrapper around the Twitter API"
|
|
options="!check" # Requires 'pytest-runner' which is in community
|
|
url="https://pypi.org/project/python-twitter"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="python3 py3-future py3-requests py3-requests-oauthlib"
|
|
makedepends="py3-setuptools py3-pytest-runner"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
replaces="py-twitter" # Backwards compatibility
|
|
provides="py-twitter=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="6ccd5aa81ec433a86a8d4db0fe28ab12d4b434849e2d06ae3cd70449d98fd642d4c16221113f4b6fd82610093c11ea042118cab0a876e4ec1208b0c8e14b41b5 python-twitter-3.5.tar.gz"
|