1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 19:55:26 +03:00
aports/testing/py3-kubernetes/APKBUILD
2021-08-17 07:20:55 +00:00

30 lines
1,009 B
Text

# Contributor: Duncan Bellamy <dunk@denkimushi.com>
# Maintainer: Duncan Bellamy <dunk@denkimushi.com>
pkgname=py3-kubernetes
_pkgname=kubernetes
pkgver=18.20.0
pkgrel=0
pkgdesc="Official Python client library for kubernetes"
url="https://github.com/kubernetes-client/python"
arch="noarch"
license="Apache-2.0"
#github and pypi archives missing some test files (kubernetes/e2e_test)
options="!check"
depends="py3-certifi py3-dateutil py3-google-auth py3-requests
py3-requests-oauthlib py3-six py3-urllib3
py3-websocket-client py3-yaml"
makedepends="py3-setuptools"
source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/k/kubernetes/kubernetes-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"
build() {
python3 setup.py build
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="
a7ef6ba439e1d57017961442f57df9065dc6ec56a605e6252c440e93b5a048c7d9b25be799a12667d7cacfb814a306b5273f56b9f242e9bcffe0e7871ace45e5 py3-kubernetes-18.20.0.tar.gz
"