Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/extra/python-pendulum/PKGBUILD
blob: 91b2edb8938c657f9dea4b698a703e2ca3aafbdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# pendulum 3 doesn't build under 32 bit for now, so force 2.1.2
# Maintainer: David Runge <dvzrv@archlinux.org>

_name=pendulum
pkgname=python-pendulum
pkgver_real=2.1.2
#pkgrel=$((8+$pkgrel))
pkgver=3.0.0
pkgrel=2
pkgdesc="Python datetimes made easy"
arch=(x86_64)
url="https://pendulum.eustace.io/"
license=(MIT)
depends=(
  python
  python-dateutil
  python-pytzdata
)
makedepends=(
  python-build
  python-installer
  python-poetry-core
  python-wheel
  python-setuptools
)
checkdepends=(
  python-babel
  python-freezegun
  python-pytest
  python-pytz
)
source=($pkgname-$pkgver_real.tar.gz::https://github.com/sdispater/$_name/archive/$pkgver_real.tar.gz)
sha512sums=('c367320ade0d10b7eb9c880286176161b925d7df052f7de85ddd169594bbe778776ea74df451f00186df98be3e32b7399c68ca4b40123e2c456206410e3a1ab2')
b2sums=('c95cd131fc95a0d19ef11f180cc42126cb8a6ea3aaf4b3bbedbc5ce4c1b37a6624f2a1be92f1a6fd6b1f14f5d20fa5f32e8230f896ab7a216f02f00e85b98738')

build() {
  cd $_name-$pkgver_real
  # NOTE: calling pyproject-build as we otherwise call the project's build.py script:
  # https://github.com/sdispater/pendulum/issues/665
  pyproject-build --wheel --no-isolation
}

check() {
  cd $_name-$pkgver_real
  pytest -vv
}

package() {
  cd $_name-$pkgver_real
  python -m installer --destdir="$pkgdir" dist/*.whl
  install -vDm 644 {CHANGELOG.md,README.rst} -t "$pkgdir/usr/share/doc/$pkgname/"
  install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
}