blob: 4eeee6b90873e82adbf3970323bbc576898bc79a (
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
|
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=py3-acme
pkgver=1.4.0
pkgrel=0
pkgdesc="ACME protocol implementation in Python"
url="https://github.com/certbot/certbot"
arch="noarch"
license="Apache"
depends="py3-setuptools py3-cryptography py3-josepy
py3-mock py3-openssl py3-pyrfc3339 py3-tz py3-requests
py3-requests-toolbelt py3-six"
checkdepends="py3-pytest py3-pytest-runner"
source="https://pypi.io/packages/source/a/acme/acme-$pkgver.tar.gz"
builddir="$srcdir/${pkgname/py3-/}-$pkgver"
build() {
python3 setup.py build
}
check() {
python3 setup.py pytest
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="32398bf5657e997b46699ef0e4bbf2ee81c024556f418251ab44fbf5c8ce39556ebbe8e80045bedee8f5ff5a2084c127338eb69ae842e09bad3ae94f2f16f622 acme-1.4.0.tar.gz"
|