12 buildPythonPackage rec {
13 pname = "aioresponses";
15 disabled = pythonOlder "3.5";
18 inherit pname version;
19 sha256 = "sha256-guSV0Ri3SJaqW01H4X7/teLMeD5RCuOVzq3l6Hyr6Jo=";
26 propagatedBuildInputs = [
37 # Skip a test which makes requests to httpbin.org
38 "test_address_as_instance_of_url_combined_with_pass_through"
39 "test_pass_through_with_origin_params"
42 pythonImportsCheck = [ "aioresponses" ];
45 description = "A helper to mock/fake web requests in python aiohttp package";
46 homepage = "https://github.com/pnuckowski/aioresponses";
47 license = lib.licenses.mit;
48 maintainers = with lib.maintainers; [ rvl ];