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

29 lines
929 B
Text

# Maintainer:
pkgname=py3-flask-oauthlib
_pkgname=Flask-OAuthlib
pkgver=0.9.5
pkgrel=3
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() {
cd "$builddir"
python3 setup.py build
}
package() {
cd "$builddir"
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="4dceac5517612987b506016e2a2d5e90274045df3423e21003fafa43cdd312c41108e97f1b1ba361182e9f499fd102de9e709645be9c470c424bdc8d04364863 Flask-OAuthlib-0.9.5.tar.gz"