aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-flask-oauthlib/APKBUILD
blob: 2aca07a09d4732e5c602e17a0ac95872eecca158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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"