1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 19:25:25 +03:00
aports/testing/py3-kubernetes/APKBUILD
2021-05-13 16:01:23 +00:00

28 lines
1,007 B
Text

# Contributor: Duncan Bellamy <dunk@denkimushi.com>
# Maintainer: Duncan Bellamy <dunk@denkimushi.com>
pkgname=py3-kubernetes
_pkgname=kubernetes
pkgver=17.17.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="88ac373eee66ccec9296931e6003e097dcd79aa4f69263941e06a11694b193c336d03953f6282cc04039498dd51dfe4c9e1eb824478f8350c892e27946279a01 py3-kubernetes-17.17.0.tar.gz"