# Maintainer: Guillaume Horel pkgname=('python-arch') _module='arch' pkgver='4.6.0' pkgrel=1 pkgdesc="ARCH models in Python." url="https://pypi.python.org/pypi/arch/4.1" depends=('python' 'python-numpy' 'python-pandas' 'python-scipy' 'python-statsmodels') checkdepends=('python-pytest') makedepends=('cython' 'python-setuptools') license=('custom:University of Illinois/NCSA Open Source License') arch=('x86_64') source=("https://github.com/bashtage/arch/archive/${pkgver}.tar.gz") sha256sums=('1eb48e7b26d3e0bd5324bd9a56e735ce9578d37999b1492caa894cc1d05b87b7') build() { cd "${srcdir}/${_module}-${pkgver}" python setup.py build } package() { cd "${srcdir}/${_module}-${pkgver}" python setup.py install --root="${pkgdir}" --optimize=1 --skip-build install -D -m644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md" } check() { cd "${srcdir}/${_module}-${pkgver}" py.test }