# Contributor: Lex Black # Contributor: David Scholl _module="tablib" pkgname="python-${_module}" pkgver=3.2.1 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-pip" "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=('a57f2770b8c225febec1cb1e65012a69cf30dd28be810e0ff98d024768c7d0f1') 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" }