aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-oauth2client/APKBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/py3-oauth2client/APKBUILD')
-rw-r--r--community/py3-oauth2client/APKBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/community/py3-oauth2client/APKBUILD b/community/py3-oauth2client/APKBUILD
new file mode 100644
index 0000000000..64a1824d32
--- /dev/null
+++ b/community/py3-oauth2client/APKBUILD
@@ -0,0 +1,32 @@
+# Maintainer:
+pkgname=py3-oauth2client
+_pkgname=oauth2client
+pkgver=4.1.3
+pkgrel=2
+pkgdesc="A client library for OAuth 2.0"
+options="!check" # Requires 'sqlalchemy' , 'fasteners' and 'flask'
+url="https://github.com/google/oauth2client"
+arch="noarch"
+license="Apache-2.0"
+depends="python3 py3-asn1 py3-httplib2 py3-asn1-modules py3-rsa py3-six"
+makedepends="py3-setuptools"
+checkdepends="py3-mock py3-openssl py3-django"
+source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
+builddir="$srcdir"/$_pkgname-$pkgver
+
+replaces="py-oauth2client" # Backwards compatibility
+provides="py-oauth2client=$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="6ca6830c0461295b60598ef3e7ee047aa9fa463d1d2c19c18d6b8606a5b30b11f0798e06c51bd5be63afd8d408442fd846c2867f112655186f55c7dc8e0b7786 oauth2client-4.1.3.tar.gz"