python3Packages.pytest-httpx: 0.15.0 -> 0.17.3

This commit is contained in:
Fabian Affolter
2022-01-11 09:44:16 +01:00
parent b819a42fb1
commit 3228ecd3d9
@@ -5,20 +5,26 @@
, pytest
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pytest-httpx";
version = "0.15.0";
version = "0.17.3";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "Colin-b";
repo = "pytest_httpx";
rev = "v${version}";
sha256 = "08dxvjkxlnam3r0yp17495d1vksyawzzkpykacjql1gi6hqlfrwg";
sha256 = "sha256-cJRzjNIN9Fc8vcjmndW+akjxDSp+wFahY2MEslgXIwM=";
};
buildInputs = [ pytest ];
buildInputs = [
pytest
];
propagatedBuildInputs = [
httpx
@@ -29,12 +35,14 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "pytest_httpx" ];
pythonImportsCheck = [
"pytest_httpx"
];
meta = with lib; {
description = "Send responses to httpx";
homepage = "https://github.com/Colin-b/pytest_httpx";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
maintainers = with maintainers; [ fab SuperSandro2000 ];
};
}