add pytest-httpx-0.15.0

This commit is contained in:
Andreas Billmeier 2021-12-05 22:49:43 +01:00 committed by Andreas Billmeier
parent ec31b7c587
commit 67c842b0ed
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST pytest-httpx-0.15.0.tar.gz 16542 BLAKE2B be25cf55cc3930f37c21a54987d84c02e273f47ba108363245a0cfb3a2efabeae54f9912699fee624a24a42d143a7fbb545bccbed3107ee514c7e69d1a5b7e5d SHA512 b8acddfd48112cbf2b9dd786ec2aa3eb4c1b0e0746d50fb9b2032d8e721b02701802a1240e68a9a6455d4e15f1d56e622216fbe7402654a7806d2cc65a9c24e6
EBUILD pytest-httpx-0.15.0.ebuild 798 BLAKE2B fb38543dab92013ae99053e157882df6ef02da5e669fd03fad42826e7b336ba73bd6b8d829869b6cc6e837cc72c2b0f0f57d80f4422ebf650022502f7307dbb7 SHA512 97412443e7b12ebbc22b68b7ab8c4d8b4402e9830539a53de66c2498a597a6b96ac7bc454feb2eed408ff6fa812066dad0bd730504bdc5cae3d55d5b733eb04c
MISC metadata.xml 467 BLAKE2B 98453948a43182222598016fbcaf2e70ed02750ea29c958163bb5e822c1594203330561fb45f7f35270f57c40c657073bd3ce214cd3c55663f5306de7946e41c SHA512 0ab5287bf60fe640758dc30c568181404205a6a21ce3026910022ac9ae4627dcfde3e35f9225a7426a6b74bd54a8c226a0b9dec69eed1196b40bd6c85c659b14

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">pytest-httpx</remote-id>
<maintainer status="unknown">
<email>colin.bounouar.dev@gmail.com</email>
<name>Colin Bounouar</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,34 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Send responses to httpx."
HOMEPAGE="https://colin-b.github.io/pytest_httpx/ https://pypi.org/project/pytest-httpx/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="d>=ev-python/httÃpx-0.21.0${PYTHON_USEDEP}]"
BDEPEND="
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
}