blob: 31dfe4a75cccba667fa4f5e7e9cdfe8d247408a5 (
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
|
# Maintainer: Charles Vejnar <first name [dot] last name [at] gmail [dot] com>
pkgname=python-labxpipe
pkgver=0.7.1
pkgrel=1
pkgdesc="Genomics pipelines"
arch=("any")
url="https://sr.ht/~vejnar/LabxPipe"
license=("MPLv2")
depends=('python'
'python-labxdb-tools'
'python-pyfnutils'
'python-xlsxwriter')
makedepends=('python-build'
'python-installer'
'python-setuptools'
'python-setuptools-scm'
'python-wheel')
source=("$pkgname-$pkgver.tar.gz::https://git.sr.ht/~vejnar/LabxPipe/archive/v${pkgver}.tar.gz")
sha256sums=('8cc76a0e08ed40314c04b0604dc060ffb376c2e66095acb77ca0d8dcbadfa4fa')
build() {
cd "$srcdir/LabxPipe-v$pkgver"
export SETUPTOOLS_SCM_PRETEND_VERSION="$pkgver"
python -m build --wheel --no-isolation
}
package() {
cd "$srcdir/LabxPipe-v$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|