summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 72c125e36ca33a8b0e1653ee6251fc6259e152be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Maintainer: Andreas Bakseter <andreas_tkd at hotmail dot com>
# Author: Andreas Mueller <t3kcit at gmail dot com>

pkgname=python-mglearn
_name=${pkgname#python-}
pkgver=0.2.1
pkgrel=1
pkgdesc="Helper functions for the book \"Introduction to Machine Learning with Python\""
arch=(any)
url="https://github.com/amueller/mglearn"
license=(BSD)
depends=("python" "python-numpy" "python-matplotlib" "python-scikit-learn" "python-pandas" "python-pillow" "python-cycler" "python-joblib" "python-six" "python-imageio")
source=("$url/archive/$pkgver.tar.gz")
md5sums=('6070e566dc54e46cfb749c22513abacc')

package() {
  cd "$srcdir/$_name-$pkgver"
  python setup.py install --root="${pkgdir}"
}