23 lines
737 B
Bash
23 lines
737 B
Bash
# Template file for 'python3-utils'
|
|
pkgname=python3-utils
|
|
version=3.5.2
|
|
revision=1
|
|
build_style=python3-module
|
|
hostmakedepends="python3-setuptools"
|
|
depends="python3"
|
|
checkdepends="python3-pytest python3-pytest-asyncio"
|
|
short_desc="Convenient utilities not included with the standard Python3 install"
|
|
maintainer="Karl Nilsson <karl.robert.nilsson@gmail.com>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://python-utils.readthedocs.org/en/latest/"
|
|
distfiles="https://github.com/wolph/python-utils/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=390679454ce9d9f33bff932b17d75648a9cfddc23e771cf6c4c37a1274b3f66e
|
|
|
|
post_extract() {
|
|
rm pytest.ini _python_utils_tests/test_logger.py # requires unpackaged loguru
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|