blob: f67eafa881e14df27e1f4af163d9c1db40a0371a (
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
|
# Contributor: Duncan Bellamy <dunk@denkimushi.com>
# Maintainer: Duncan Bellamy <dunk@denkimushi.com>
pkgname=py3-kubernetes
_pkgname=kubernetes
pkgver=21.7.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="
60e4ec3893767a7d543b8a7383ff6d4d4abf9c652eab89bb65b2299b2ab91f5f448246e289312451f8398e9226b1f758e7ae9fd9328544a561691299731285bc py3-kubernetes-21.7.0.tar.gz
"
|