Merge pull request #154884 from fabaff/bump-aioresponses

python3Packages.aioresponses: 0.7.2 -> 0.7.3
This commit is contained in:
Fabian Affolter 2022-01-13 20:12:33 +01:00 committed by GitHub
commit 847ab63391
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,12 +11,14 @@
buildPythonPackage rec {
pname = "aioresponses";
version = "0.7.2";
version = "0.7.3";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-guSV0Ri3SJaqW01H4X7/teLMeD5RCuOVzq3l6Hyr6Jo=";
sha256 = "sha256-LGTtVxDujLTpWMVpGE2tEvTJzVk5E1yzj4jGqCYczrM=";
};
nativeBuildInputs = [
@ -39,7 +41,9 @@ buildPythonPackage rec {
"test_pass_through_with_origin_params"
];
pythonImportsCheck = [ "aioresponses" ];
pythonImportsCheck = [
"aioresponses"
];
meta = {
description = "A helper to mock/fake web requests in python aiohttp package";