mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-15 20:25:17 +03:00
36 lines
933 B
Text
36 lines
933 B
Text
# Contributor: Iztok Fister, Jr. <iztok@iztok-jr-fister.eu>
|
|
# Maintainer: Iztok Fister, Jr. <iztok@iztok-jr-fister.eu>
|
|
pkgname=py3-patchworklib
|
|
pkgver=0.5.1
|
|
pkgrel=0
|
|
pkgdesc="A subplot manager for intuitive layouts in matplotlib, seaborn, and plotnine"
|
|
url="https://github.com/ponnhide/patchworklib"
|
|
arch="noarch !s390x"
|
|
license="GPL-3.0-or-later"
|
|
depends="
|
|
python3
|
|
py3-dill
|
|
py3-matplotlib
|
|
py3-numpy
|
|
py3-pandas
|
|
py3-seaborn
|
|
"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-pytest"
|
|
source="https://github.com/ponnhide/patchworklib/archive/v$pkgver/patchworklib-$pkgver.tar.gz"
|
|
builddir="$srcdir/patchworklib-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 -m pytest
|
|
}
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
867a4a8ec8d821570279e773c62ee7245eb69625e023526ca9d504292c0d46e5008df3eb3069fac0ad4669a8d95b723f03ff85d514616db8ebe2a9f3811ca00b patchworklib-0.5.1.tar.gz
|
|
"
|