# Contributor: Lex Black # Contributor: David Scholl _module="tablib" pkgname="python-${_module}" pkgver=3.0.0 pkgrel=1 pkgdesc="Format-agnostic tabular data library (XLS, JSON, YAML, CSV)" arch=("any") url="http://python-tablib.org" license=("MIT") depends=("python") makedepends=("python-setuptools") checkdepends=("python-pytest-cov" "python-tabulate" "python-markuppy" "python-odfpy" "python-pandas" "python-xlrd" "python-xlwt" "python-openpyxl" "python-pyaml") optdepends=("python-tabulate: cli interface" "python-markuppy: for HTML support" "python-odfpy: for ODS support" "python-pandas: for pandas support" "python-xlrd: for XLS support (extract data)" "python-xlwt: for XLS support (create spreadsheets)" "python-openpyxl: for XLSX support" "python-pyaml: for YAML support") source=(https://files.pythonhosted.org/packages/source/${_module::1}/$_module/$_module-$pkgver.tar.gz) sha256sums=('f83cac08454f225a34a305daa20e2110d5e6335135d505f93bc66583a5f9c10d') build() { cd "${_module}-${pkgver}" python setup.py build } check() { cd "${_module}-${pkgver}" PYTHONPATH="$PWD/build/lib:$PYTHONPATH" py.test } package() { cd "${_module}-${pkgver}" python setup.py install --root="${pkgdir}" --optimize=1 --skip-build install -D -m644 "${srcdir}/${_module}-${pkgver}/LICENSE" \ "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }