1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-19 17:25:17 +03:00
aports/testing/py3-biopython/APKBUILD
2021-06-06 16:58:12 +00:00

30 lines
872 B
Text

# Contributor: Charles Pritchard <chuck@jumis.com>
# Maintainer: Charles Pritchard <chuck@jumis.com>
pkgname=py3-biopython
pkgver=1.79
pkgrel=0
pkgdesc="Python tools for computational molecular biology."
options="!check" # test_NCBI_qblast hangs
url="https://biopython.org/"
arch="all !mips !mips64" # blocked by py3-numpy
license="BSD-3-Clause"
depends="py3-numpy python3"
makedepends="py3-setuptools py3-numpy-dev python3-dev"
source="https://files.pythonhosted.org/packages/source/b/biopython/biopython-$pkgver.tar.gz"
builddir="$srcdir/biopython-$pkgver"
build() {
python3 setup.py build
}
check() {
python3 setup.py test
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="
81e2718f4015bb038637b4d1181e6bea48018fec1e769c5f0ab75442a769336899191f1222e82e1b9569c1fac470500d7582420e5cbe9bce0056b41751adeaaa biopython-1.79.tar.gz
"