blob: bb74653db4903856f5edd8f6c3518857af8aa3eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Maintainer: Bipin Kumar <kbipinkumar@pm.me>
pkgname=nanoget
_module=nanoget
pkgver=1.19.3
pkgrel=1
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
}
|