blob: d9158cac043f4e94a3e4fa942bf0f372836f85a3 (
plain) (
blame)
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
|
# Contributor: Brandon Bergren <git@bdragon.rtk0.net>
# Maintainer: Brandon Bergren <git@bdragon.rtk0.net>
pkgname=py3-python-dateutil
_pkgname=python-dateutil
_p="${_pkgname#?}"
_p="${_pkgname%"$_p"}"
pkgver=2.8.2
pkgrel=0
pkgdesc="Extensions to the standard Python datetime module"
url="https://pypi.python.org/pypi/python-dateutil"
arch="noarch"
options="!check" # conflict
license="Apache-2.0 AND BSD-3-Clause"
depends="python3"
makedepends="python3-dev py3-iniconfig py3-toml"
source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/$_p/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"
build() {
python3 setup.py build
}
check() {
# Required with PyTest >=4.8, see:
# https://bugzilla.redhat.com/show_bug.cgi?id=1734775
# https://github.com/pytest-dev/pytest/issues/5678
pytest -W ignore::pytest.PytestUnknownMarkWarning
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="6538858e4a3e2d1de1bf25b6d8b25e3a8d20bf60fb85e32d07ac491c90ce193e268bb5641371b8a79fb0f033a184bac9896b3bc643c1aca9ee9c6478286ac20c py3-python-dateutil-2.8.2.tar.gz"
|