mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
41 lines
882 B
Text
41 lines
882 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-cliff
|
|
pkgver=4.2.0
|
|
pkgrel=0
|
|
pkgdesc="Command Line Interface Formulation Framework"
|
|
url="https://docs.openstack.org/cliff/latest/"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="
|
|
py3-yaml
|
|
python3
|
|
"
|
|
makedepends="
|
|
py3-pbr
|
|
py3-setuptools
|
|
"
|
|
checkdepends="
|
|
py3-pytest
|
|
py3-prettytable
|
|
py3-stevedore
|
|
"
|
|
source="https://pypi.python.org/packages/source/c/cliff/cliff-$pkgver.tar.gz"
|
|
options="!check" # Requires specific (old) version of py3-cmd2
|
|
builddir="$srcdir/cliff-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
pytest
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
6f0c31b49603be5289e6d4c9b2572862e977264df21dc14d976289c627909102d672ee8ffa5b6cd79b3a349158ff8f36444a2d2061e18eeb7121ce79b2d5719b cliff-4.2.0.tar.gz
|
|
"
|