void-packages/srcpkgs/python-httmock/template
Lugubris d78cb0d201 Drop maintainership of orphaned packages
some packages were dropped but their maintainer= was not updated in template.
this will help new maintainers adopt these packages.

-> https://github.com/void-linux/void-packages/pull/13930#issuecomment-524610652
2019-08-25 21:16:43 +02:00

31 lines
836 B
Bash

# Template file for 'python-httmock'
pkgname=python-httmock
version=1.3.0
revision=1
archs=noarch
wrksrc="httmock-${version}"
build_style=python-module
pycompile_module="httmock.py"
hostmakedepends="python3-setuptools python-setuptools"
depends="python-requests"
checkdepends="python3-requests"
short_desc="Mocking library for requests (Python2)"
maintainer="Orphaned <orphan@voidlinux.org>"
license="Apache-2.0"
homepage="https://github.com/patrys/httmock"
distfiles="https://github.com/patrys/httmock/archive/${version}.tar.gz"
checksum=4716729f0d07f3f6043dde43545a5381c4c6031a62e9dc9eed21e73c63d86722
do_check() {
python3 setup.py test
}
python3-httmock_package() {
archs=noarch
pycompile_module="httmock.py"
depends="python3-requests"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/lib/python3*
}
}