summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fde7615de9ccc37fc59cb5b3f63abb9aebe67fcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Maintainer: Ian Beringer <ian@ianberinger.com>

pkgname=python-kubernetes
_pkgname=client-python
pkgver=2.0.0
pkgrel=1
license=('Apache')
pkgdesc='Python client for the kubernetes API'
makedepends=('python-setuptools')
depends=('python' 'python-websocket-client' 'python-urllib3' 'python-six' 'python-dateutil' 'python-oauth2client' 'python-ipaddress' 'python-certifi')
arch=('any')
url='https://github.com/kubernetes-incubator/client-python'
source=("${url}/archive/v${pkgver}.tar.gz")
sha256sums=('12c3837c95e9e7237f1273712de6fbb4bec4172559e066a97f10edd281d0ad0c')

package() {
  cd "$srcdir/$_pkgname-$pkgver"
  python setup.py install --root="$pkgdir/" --optimize=1
}