mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
32 lines
892 B
Plaintext
32 lines
892 B
Plaintext
# Contributor: Iztok Fister, Jr. <iztok@iztok-jr-fister.eu>
|
|
# Maintainer: Iztok Fister, Jr. <iztok@iztok-jr-fister.eu>
|
|
pkgname=py3-param
|
|
pkgver=1.13.0
|
|
pkgrel=1
|
|
pkgdesc="Make your Python code clearer and more reliable by declaring Parameters"
|
|
url="https://github.com/holoviz/param"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-pytest py3-pytest-cov py3-flake8"
|
|
subpackages="$pkgname-pyc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/holoviz/param/archive/v$pkgver/param-$pkgver.tar.gz"
|
|
builddir="$srcdir/param-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 -m pytest
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
77013bcc6d047b1da40a6a6c6658022d601fe38b69945d8ea39e568138ba849cec136d06000c89b12dd9990d381be6ee70c9ea98f1af9940a969698013587901 py3-param-1.13.0.tar.gz
|
|
"
|