summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 10841e2b8cf0267583e5fa222dec50a3a4607b28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Maintainer Musikolo <musikolo {at} hotmail [dot] com>

pkgname=stsauth
pkgver=1.0.1
pkgdesc="CLI tool for fetching AWS tokens. Creates a temporary AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY that can be used with cli tools such as awscli, ansible, terraform and more."
pkgrel=1
arch=(any)
url="https://github.com/cshamrick/stsauth"
license=(MIT)
makedepends=(aws-cli python-pip python-boto3 python-beautifulsoup4 python-click python2-configparser python-requests python-requests-ntlm)
depends=(python-boto3 python-beautifulsoup4 python-click python2-configparser python-requests python-requests-ntlm python-click-log python-cryptography python-pyotp python-lxml)
options=()
source=("git+https://github.com/cshamrick/${pkgname}.git")
md5sums=('SKIP')

package() {
  mkdir -p "${pkgdir}"
  pip install --root="${pkgdir}" ${pkgname}==${pkgver} --no-warn-script-location  --no-deps
}