summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 222d822a1d1013e690ae85be87e6f1d0f3bda003 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Radim Sückr <contact@radimsuckr.cz>

pkgname=developers-chamber
pkgver=0.0.26
pkgrel=1
pkgdesc='Python developers utility library'
arch=('any')
url='https://github.com/druids/developers-chamber'
license=('MIT')
depends=('python' 'python-boto3' 'python-docker' 'python-click' 'python-gitpython' 'python-requests' 'python-click-completion' 'python-hosts' 'python-coloredlogs' 'python-dotenv' 'python-isort' 'python-jira' 'python-unidecode' 'python-attrdict' 'python-togglpy')
makedepends=('python-setuptools')
source=('git+https://github.com/druids/developers-chamber.git')
sha512sums=('SKIP')

prepare() {
	cd ${pkgname}
	python setup.py build
}

package() {
	cd ${pkgname}
	python setup.py install --root=${pkgdir} --optimize=1 --skip-build
}