respx-0.14.0

This commit is contained in:
Andreas Billmeier 2020-10-17 09:13:11 +02:00 committed by Andreas Billmeier
parent 9c3bb307f8
commit 03b934e605
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -2,6 +2,7 @@
* bump hass-nabucasa-0.37.1
* update httpcore-0.12.0
* update httpx-0.16.1
* add respx-0.14.0
2020-10-16 homeassistant-0.116.4
* bump elkm1-lib-0.8.3

View File

@ -0,0 +1,3 @@
DIST respx-0.14.0.tar.gz 12994 BLAKE2B d234f333a777d359452865facfb01e193296331de27ea71582ed7f1a7e7d54dac134b6ba5f794528177cd35bab1b49bde462e08bc1372e5b0e198000b401d401 SHA512 5790a4d972c7ee5176f5fa4e80c3107b32c8dd2c8ec0e74a965524914ba50b44189eb868949994ec407da61e3ccc357b1cac2d860ec6afeb4191b3250a7c93d6
EBUILD respx-0.14.0.ebuild 760 BLAKE2B ddaa169250ff29fb39ddbad103e0b5a2e9947442a39ece7f9e1e1f4dba994c1373a844e928bca3e6ff3283c24e9d30f7a6fcbb09db61725fca9e246815e4740a SHA512 dbaf5fd2145ed271b5b135e2daed9ba4351884e549847eb9a37bab0fe1daea22429a75b5e00f27522aaef232ea7280f8145f50d806cd246ddec82d9e18d37e8d
MISC metadata.xml 449 BLAKE2B 9080ea1f04618cdd3b9e4f1f8edc77171559ad2fa38cc7e27955513f3391a3947d894f0c9b1e6f026fcfdb72505f1d1d273d7be63a3789cc3b1897d4fab2b2b7 SHA512 1e5d0bdae4a258d863dafe3e62b66c93a23626b50c73ee0ce4a30c1bbdc1736e7ebefd5f0e38b415810ba6e1ee135102dabb4079f00061d35f5d02a5fb5bb431

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">respx</remote-id>
<maintainer status="unknown">
<email>jonas@5monkeys.se</email>
<name>Jonas Lundberg</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="A utility for mocking out the Python HTTPX and HTTP Core libraries."
HOMEPAGE="https://lundberg.github.io/respx/ https://pypi.org/project/respx/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=">=dev-python/httpx-0.15[${PYTHON_USEDEP}]"
BDEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}