Package Details: python-timezonefinder 6.5.0-2

Git Clone URL: https://aur.archlinux.org/python-timezonefinder.git (read-only, click to copy)
Package Base: python-timezonefinder
Description: Fast and lightweight project for looking up the timezone for a given lat/lng
Upstream URL: https://github.com/MrMinimal64/timezonefinder
Licenses: MIT
Submitter: pozar87
Maintainer: trougnouf
Last Packager: trougnouf
Votes: 1
Popularity: 0.000000
First Submitted: 2018-03-04 16:31 (UTC)
Last Updated: 2024-04-01 23:28 (UTC)

Latest Comments

nicholascw commented on 2024-03-04 04:46 (UTC)

The follow PKGBUILD should build 6.4.1

# Maintainer: Łukasz Pożarlik <lpozarlik@gmail.com>
# Maintainer: Nicholas Wang <me AT nicho1as DOT wang>

pkgname=('python-timezonefinder')
pkgdesc="Fast and lightweight project for looking up the timezone for a given lat/lng"
pkgver=6.4.1
pkgrel=1
url="https://github.com/MrMinimal64/timezonefinder"
license=('MIT')
arch=('any')
makedepends=('python' 'python-numpy' 'python-build' 'python-installer' 'python-setuptools' 'python-cffi'  'python-poetry-core')
source=("https://github.com/jannikmi/timezonefinder/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('948b56cb28adf9665cab41c3e49c7a501a5eac1d1f4ed576d2ffa0fd26964cb9')

build() {
  python -m build --no-isolation --wheel --outdir ${srcdir}/dist/ ${srcdir}/timezonefinder-${pkgver}
}

package() {
  python -m installer --destdir="$pkgdir" ${srcdir}/dist/*.whl
}