mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
31 lines
875 B
Text
31 lines
875 B
Text
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=py3-acme
|
|
pkgver=1.18.0
|
|
pkgrel=0
|
|
pkgdesc="ACME protocol implementation in Python"
|
|
url="https://github.com/certbot/certbot"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="py3-setuptools py3-cryptography py3-josepy
|
|
py3-openssl py3-pyrfc3339 py3-tz py3-requests
|
|
py3-requests-toolbelt"
|
|
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="
|
|
067c6b3e970bd4b15d8d56d00ec646c06cdcfc9bd29928dc71eb59a52f058814d96fcf1e283080707445271c1cd7bed78451c44838738d53010f6d52a3a7fe83 acme-1.18.0.tar.gz
|
|
"
|