mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 18:55:29 +03:00
33 lines
985 B
Text
33 lines
985 B
Text
# Contributor: Eivind Uggedal <eu@eju.no>
|
|
# Maintainer:
|
|
pkgname=py3-oauthlib
|
|
_pkgname=oauthlib
|
|
pkgver=2.1.0
|
|
pkgrel=5
|
|
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-3-Clause"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-nose py3-cryptography py3-jwt" # py3-blinker"
|
|
source="https://files.pythonhosted.org/packages/source/o/oauthlib/oauthlib-$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"
|