blob: 53b84a512fa37638509542cf3e9eac42084c0ea0 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Maintainer: Philipp A. <flying-sheep@web.de>
# Contributor: Kyle Meyer <kyle@kyleam.com>
pkgname=snakemake
pkgver=7.2.1
pkgrel=1
pkgdesc='Python-based language and execution environment for GNU Make-like workflows'
arch=(any)
url='https://snakemake.readthedocs.io'
depends=(
python
python-wrapt
python-requests
python-ratelimiter
python-yaml
python-configargparse
python-appdirs
python-datrie
python-jsonschema
python-docutils
python-gitpython
python-psutil
jupyter-nbformat
python-toposort
python-connection_pool
'python-pulp>=2.0'
'python-smart_open>=3.0'
python-stopit
python-tabulate
python-yte
python-jinja
python-retry
)
makedepends=(python-setuptools)
optdepends=(
'python-pygments: For report generation'
'python-biopython: For GenBank/NCBI Entrez support'
'python-easywebdav: For WebDAV support'
'python-pysftp: For SFTP support'
'python-boto3: For AWS support'
'python-moto: For AWS support'
'python-dropbox: For Dropbox support'
'python-ftputil: For FTP support'
'python-xrootd: For XRootD support'
'slacker: For messaging'
)
license=(MIT)
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz")
sha256sums=('63036918e4dbdf764cb53e26e136963512219bc9ab08c62f5545835e63376bdf')
build() {
cd "$srcdir/$pkgname-$pkgver"
python setup.py build
}
package() {
cd "$srcdir/$pkgname-$pkgver"
python setup.py install --skip-build -O1 --root="$pkgdir" || exit 1
local pyver=$(python -c 'import sys; print("{}.{}".format(*sys.version_info[:2]))')
install -d "$pkgdir/etc/bash_completion.d"
PYTHONPATH="$pkgdir/usr/lib/python$pyver/site-packages:$PYTHONPATH" \
"$pkgdir/usr/bin/snakemake" --bash-completion >"$pkgdir/etc/bash_completion.d/snakemake"
}
|