void-packages/srcpkgs/python-iso8601/template
2021-10-09 08:01:34 -04:00

36 lines
884 B
Bash

# Template file for 'python-iso8601'
pkgname=python-iso8601
version=0.1.16
revision=2
wrksrc="iso8601-${version}"
build_style=python-module
hostmakedepends="python-setuptools python3-setuptools"
depends="python"
checkdepends="python-pytest python3-pytest"
short_desc="ISO8601 formatted dated parser for Python2"
maintainer="Andrew J. Hesford <ajh@sideband.org>"
license="MIT"
homepage="https://github.com/micktwomey/pyiso8601"
distfiles="${PYPI_SITE}/i/iso8601/iso8601-${version}.tar.gz"
checksum=36532f77cc800594e8f16641edae7f1baf7932f05d8e508545b95fc53c6dc85b
replaces="python-iso-8601>=0"
do_check() {
python2 -m pytest iso8601
python3 -m pytest iso8601
}
post_install() {
vlicense LICENSE
}
python3-iso8601_package() {
short_desc="${short_desc/Python2/Python3}"
depends="python3"
replaces="python3-iso-8601>=0"
pkg_install() {
vlicense LICENSE
vmove ${py3_lib}
}
}