mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-10 02:11:44 +01:00
29 lines
870 B
Plaintext
29 lines
870 B
Plaintext
# Contributor: Charles Pritchard <chuck@jumis.com>
|
|
# Maintainer: Charles Pritchard <chuck@jumis.com>
|
|
pkgname=py3-biopython
|
|
pkgver=1.78
|
|
pkgrel=1
|
|
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="5e7a2584f067b9c1636c844452fca6561dbd217309205e9215c879a56956842192712c58fe7cf4ecd2b8841aa099f7974c6a8055700e1e3ae4a10529f7165646 biopython-1.78.tar.gz"
|