mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-29 12:31:35 +01:00
30 lines
866 B
Plaintext
30 lines
866 B
Plaintext
# Contributor: Charles Pritchard <chuck@jumis.com>
|
|
# Maintainer: Charles Pritchard <chuck@jumis.com>
|
|
pkgname=py3-biopython
|
|
_pkgname=biopython
|
|
pkgver=1.76
|
|
pkgrel=0
|
|
pkgdesc="Python tools for computational molecular biology."
|
|
options="!check" # test_NCBI_qblast hangs
|
|
url="https://biopython.org/"
|
|
arch="all"
|
|
license="BSD-3-Clause"
|
|
depends="py3-numpy python3"
|
|
makedepends="py3-setuptools py3-numpy-dev python3-dev"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="cd98e5cff151f8f286e9bf9763cf4b61bceb80b2696c5ac98aae6ee180f2ab2493bd1e1852a0fd5f27c71550f8a609e5163b1c1900ae32314dd76e36b6f06de0 biopython-1.76.tar.gz"
|