python310Packages.pytest-httpx: 0.21.3 -> 0.22.0

This commit is contained in:
Theodore Ni 2023-06-15 21:51:13 -07:00
parent e6272819a1
commit 0f8799f7b1
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474

View file

@ -6,11 +6,12 @@
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
}:
buildPythonPackage rec {
pname = "pytest-httpx";
version = "0.21.3";
version = "0.22.0";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -19,9 +20,13 @@ buildPythonPackage rec {
owner = "Colin-b";
repo = "pytest_httpx";
rev = "refs/tags/v${version}";
hash = "sha256-+jOPbEul/mkZbaR6ZqwLTgVtemi18vOYgqJcgv6JSII=";
hash = "sha256-J5Y5G3/8d9hAtDFqweqA73amnXUpPbmb0uTrCslpl9k=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
];
buildInputs = [
pytest
];
@ -30,6 +35,10 @@ buildPythonPackage rec {
httpx
];
pythonRelaxDeps = [
"httpx"
];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook