# Maintainer: Erich Eckner # Contributor: Astro Benzene # Contributor: Francois Boulogne pkgname=python-tifffile pkgver=2020.11.26 _pyname=${pkgname#python-} pkgrel=1 pkgdesc="Read and write image data from and to TIFF files" arch=('any') url="https://github.com/cgohlke/tifffile" license=('BSD') makedepends=('python-setuptools') depends=('python-numpy>=1.15.1') optdepends=('python-matplotlib>=3.1: required only for plotting' 'python-imagecodecs>=2020.2.18: required only for encoding or decoding LZW, JPEG, etc' 'python-lxml: required only for validating and printing XML') #checkdepends=('python-pytest') source=("https://github.com/cgohlke/$_pyname/archive/v$pkgver.tar.gz") sha512sums=('c944845ff7b97a5beb5f3a68b785835bd6c386927f50ae254418af9751a6462a95816d992f2afa027e4e98920098fe0f564dd62725f8088cd89efe7878410b9b') build() { cd ${srcdir}/${_pyname}-${pkgver} python setup.py build } #check() { # cd ${srcdir}/${_pyname}-${pkgver} # # PYTHONPATH="build/lib" pytest #} package() { cd ${srcdir}/${_pyname}-${pkgver} install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" install -Dm644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}" python setup.py install --root="${pkgdir}" --optimize=1 }