19 buildPythonPackage rec {
20 pname = "aioresponses";
24 disabled = pythonOlder "3.5";
27 inherit pname version;
28 hash = "sha256-95XZ29otYXdIQOfjL1Nm9FdS0a3Bt0yTYq/QFylsfuE=";
36 propagatedBuildInputs = [ aiohttp ];
38 pythonImportsCheck = [ "aioresponses" ];
46 # Skip a test which makes requests to httpbin.org
47 "test_address_as_instance_of_url_combined_with_pass_through"
48 "test_pass_through_with_origin_params"
52 description = "Helper to mock/fake web requests in python aiohttp package";
53 homepage = "https://github.com/pnuckowski/aioresponses";
54 license = lib.licenses.mit;