blob: 048d5ab73de3c97170e6755bcdc33c496c27eeb8 (
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
|
# Maintainer: willemw <willemw12@gmail.com>
_pkgname=scanpy
pkgname=$_pkgname-git
pkgver=0.1+9.g8607c60
pkgrel=1
pkgdesc='Efficient tools for analyzing and simulating large-scale single-cell data'
arch=(any)
url='https://github.com/theislab/scanpy'
license=('GPL3')
depends=(
cython
python-matplotlib
python-pandas
python-scipy
python-seaborn
python-psutil
python-xlrd
python-h5py
python-scikit-learn
python-statsmodels
python-natsort
python-joblib
python-profilehooks)
source=($_pkgname::git://github.com/theislab/scanpy.git)
md5sums=(SKIP)
pkgver() {
cd "$srcdir/$_pkgname/$_pkgname"
python -c 'import _version; print(_version.get_versions()["version"])'
}
build() {
cd "$srcdir/$_pkgname"
python setup.py build_ext
python setup.py build
}
package() {
cd "$srcdir/$_pkgname"
python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
}
|