32 lines
840 B
Bash
32 lines
840 B
Bash
# Template file for 'python3-slixmpp'
|
|
pkgname=python3-slixmpp
|
|
version=1.4.1
|
|
revision=1
|
|
wrksrc="slixmpp-${version}"
|
|
build_style=python3-module
|
|
pycompile_module="slixmpp"
|
|
hostmakedepends="pkg-config python3-setuptools python3-Cython"
|
|
makedepends="python3-devel libidn-devel"
|
|
checkdepends="python3-pytest gnupg"
|
|
depends="python3-aiodns python3-pyasn1 python3-pyasn1-modules"
|
|
short_desc="An elegant Python library for XMPP"
|
|
maintainer="Franklin Delehelle <franklin.delehelle@odena.eu>"
|
|
license="MIT"
|
|
homepage="https://pypi.org/project/slixmpp/"
|
|
distfiles="${PYPI_SITE}/s/slixmpp/slixmpp-${version}.tar.gz"
|
|
checksum=020acd4507fd00c38835b78b5f338db60d3df840187623e0d41ab2ca89d7ae57
|
|
|
|
pre_build() {
|
|
sed -i "s|os.environ.get('CC', 'cc')|'${CC}'|" setup.py
|
|
}
|
|
|
|
do_check() {
|
|
rm -f tests/live_test.py
|
|
|
|
pytest3
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|