aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-oauthlib/APKBUILD
blob: f767d8b8f8def4ab7ad14ef0985f87b90dca2388 (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
30
31
32
33
# Contributor: Eivind Uggedal <eu@eju.no>
# Maintainer:
pkgname=py3-oauthlib
_pkgname=oauthlib
pkgver=2.1.0
pkgrel=3
pkgdesc="Python3 implementation of the OAuth request-signing logic"
options="!check" # requires 'blinker' that is in testing/
url="https://github.com/idan/oauthlib"
arch="noarch"
license="BSD"
depends="python3"
makedepends="py3-setuptools"
checkdepends="py3-nose py3-cryptography py3-jwt" # py3-blinker"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"

replaces="py-oauthlib" # Backwards compatibility
provides="py-oauthlib=$pkgver-r$pkgrel" # Backwards compatibility

build() {
	python3 setup.py build
}

check() {
	python3 setup.py test
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="bd749c7b65de00cc0c371053577623aca5767a0b20e41b2d5e3e20f8246e84bf360472b4ec983023227d6164ecd7ed4647c41cd8f425fe21200a2c25a9049ffd  oauthlib-2.1.0.tar.gz"