mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 18:55:29 +03:00
30 lines
1,005 B
Text
30 lines
1,005 B
Text
# Contributor: Iztok Fister, Jr. <iztok@iztok-jr-fister.eu>
|
|
# Maintainer: Iztok Fister, Jr. <iztok@iztok-jr-fister.eu>
|
|
pkgname=py3-complexheatmap
|
|
pkgver=1.3.1
|
|
pkgrel=1
|
|
pkgdesc="A Python package to plot complex heatmap (clustermap)"
|
|
url="https://github.com/DingWB/PyComplexHeatmap"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3 py3-matplotlib py3-numpy py3-pandas py3-seaborn"
|
|
makedepends="py3-setuptools"
|
|
source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/P/PyComplexHeatmap/PyComplexHeatmap-$pkgver.tar.gz"
|
|
builddir="$srcdir/PyComplexHeatmap-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
# no tests provided by the upstream; use smoke test for now
|
|
check() {
|
|
PYTHONPATH=build/lib python3 -c "from PyComplexHeatmap import *"
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
b868741e4f7db306813c9d3c8faaf67622a6f69827b79365b5400ffe0f9bfb00e927c7eb1191eb70540c67c0500481b5207738005ca87afb1ca781385fad0396 py3-complexheatmap-1.3.1.tar.gz
|
|
"
|