1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 18:25:41 +03:00
aports/community/py3-flask-oauthlib/APKBUILD

27 lines
897 B
Text

# Maintainer:
pkgname=py3-flask-oauthlib
_pkgname=Flask-OAuthlib
pkgver=0.9.6
pkgrel=1
pkgdesc="Flask OAuth extension using OAuthlib"
url="https://github.com/lepture/flask-oauthlib"
arch="noarch"
license="BSD-3-Clause"
depends="py3-flask py3-requests-oauthlib py3-oauthlib python3"
makedepends="py3-setuptools"
options="!check" # no test suite
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"
replaces="py-flask-oauthlib" # Backwards compatibility
provides="py-flask-oauthlib=$pkgver-r$pkgrel" # Backwards compatibility
build() {
python3 setup.py build
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="f12e566ad92993bb7c980ca678987ee38a90afec567e550088406e386680e389cafd0ff0e063d8d2c9f742918ae5531f9e7da43bece7292455a467fb3f9a25c5 Flask-OAuthlib-0.9.6.tar.gz"