blob: 92de4554880ea820188a343c367e5536b66eb709 (
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
|
# Contributor: Frank Fishburn <frankthefishburn@gmail.com>
# Maintainer: Liam Timms <timms5000@gmail.com>
pkgname=python-nilearn
pkgver=0.5.2
pkgrel=2
pkgdesc="Python library for fast and easy statistical learning on NeuroImaging data"
arch=('any')
url="http://nilearn.github.io/"
license=('BSD')
depends=('python-coverage' 'python-nose' 'python-joblib' 'python-scipy' 'python-numpy' 'python-scikit-learn>=0.19' 'python-nibabel>=2.0.2')
makedepends=('python-setuptools')
optdepends=('python-matplotlib: Plotting library for fancy examples')
options=(!emptydirs)
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/nilearn/nilearn/archive/${pkgver}.tar.gz")
sha256sums=('7720626fc58be08dc588069c9880df315be10ce7cf935e234ee2e18aea136f5f')
build() {
cd "$srcdir"/nilearn-$pkgver
python setup.py build
}
package() {
cd "$srcdir"/nilearn-$pkgver
python setup.py install --root="$pkgdir"/ --optimize=1
}
|