1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 04:35:39 +03:00
aports/community/py3-graphviz/APKBUILD
2019-11-05 15:33:53 +00:00

30 lines
929 B
Text

# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer:
pkgname=py3-graphviz
pkgver=0.12
pkgrel=1
pkgdesc="Simple interface for Graphviz"
url="https://github.com/xflr6/graphviz"
arch="noarch"
license="MIT"
replaces="py-graphviz" # for backwards compatibility
provides="py-graphviz=$pkgver-r$pkgrel" # for backwards compatibility
depends="graphviz python3"
makedepends="py3-setuptools"
checkdepends="pytest py3-pytest-cov py3-mock py3-pytest-mock"
source="$pkgname-$pkgver.tar.gz::https://github.com/xflr6/graphviz/archive/$pkgver.tar.gz"
builddir="$srcdir"/graphviz-$pkgver
build() {
python3 setup.py --quiet build
}
check() {
PYTHONPATH=. python3 run-tests.py
}
package() {
python3 setup.py --quiet install --prefix=/usr --root="$pkgdir"
}
sha512sums="e89af0320e26fd85c51461b5636aaa4e18dec2c8f62933a6aafa54c796258ffc08a6886790e03ed37d7d2897dc8683972b414f2be84468072801548450f524c5 py3-graphviz-0.12.tar.gz"