29 lines
789 B
Bash
29 lines
789 B
Bash
# Template file for 'python-msgpack'
|
|
pkgname=python-msgpack
|
|
version=0.6.0
|
|
revision=1
|
|
wrksrc="msgpack-${version}"
|
|
build_style=python-module
|
|
pycompile_module="msgpack"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
makedepends="python-devel python3-devel"
|
|
checkdepends="python3-pytest"
|
|
short_desc="Python module for Msgpack serializer (Python2)"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="Apache-2.0"
|
|
homepage="https://github.com/msgpack/msgpack-python"
|
|
distfiles="${PYPI_SITE}/m/msgpack/msgpack-${version}.tar.gz"
|
|
checksum=64abc6bf3a2ac301702f5760f4e6e227d0fd4d84d9014ef9a40faa9d43365259
|
|
|
|
do_check() {
|
|
python3 -m pytest
|
|
}
|
|
|
|
python3-msgpack_package() {
|
|
pycompile_module="msgpack"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|