mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
38 lines
972 B
Bash
38 lines
972 B
Bash
# Maintainer: Bipin Kumar <kbipinkumar@pm.me>
|
|
|
|
pkgname=nanoget
|
|
_module=nanoget
|
|
pkgver=1.19.3
|
|
pkgrel=3
|
|
pkgdesc="Functions to extract useful metrics from Oxford Nanopore sequencing reads and alignments"
|
|
url="https://github.com/wdecoster/nanoget/"
|
|
depends=(
|
|
'python'
|
|
'python-pandas'
|
|
'python-numpy'
|
|
'python-biopython'
|
|
'python-pysam'
|
|
)
|
|
|
|
makedepends=(
|
|
'python-setuptools'
|
|
'python-wheel'
|
|
'python-build'
|
|
'cython'
|
|
'python-installer'
|
|
)
|
|
license=('GPL3')
|
|
arch=('any')
|
|
source=("https://files.pythonhosted.org/packages/source/${_module::1}/$_module/$_module-$pkgver.tar.gz")
|
|
sha256sums=('da981810edb1cbe42cbbfbe5fcf753f29bf5555204cd51256b28a284a036a71b')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
python -m build --wheel --no-isolation
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
python -m installer --destdir="$pkgdir" dist/*.whl
|
|
rm ${pkgdir}/usr/LICENSE
|
|
}
|