13 buildPythonPackage rec {
14 pname = "aioresponses";
16 format = "setuptools";
18 disabled = pythonOlder "3.5";
21 inherit pname version;
22 sha256 = "sha256-LGTtVxDujLTpWMVpGE2tEvTJzVk5E1yzj4jGqCYczrM=";
29 propagatedBuildInputs = [
41 # Skip a test which makes requests to httpbin.org
42 "test_address_as_instance_of_url_combined_with_pass_through"
43 "test_pass_through_with_origin_params"
46 pythonImportsCheck = [
51 description = "A helper to mock/fake web requests in python aiohttp package";
52 homepage = "https://github.com/pnuckowski/aioresponses";
53 license = lib.licenses.mit;
54 maintainers = with lib.maintainers; [ rvl ];