9 buildPythonPackage rec {
10 pname = "async-generator";
12 format = "setuptools";
14 disabled = pythonOlder "3.5";
17 pname = "async_generator";
19 hash = "sha256-brs9EGwSkgqq5CzLb3h+9e79zdFm6j1ij6hHar5xIUQ=";
26 disabledTests = lib.optionals (pythonAtLeast "3.12") [
27 "test_aclose_on_unstarted_generator"
30 pythonImportsCheck = [ "async_generator" ];
33 description = "Async generators and context managers for Python 3.5+";
34 homepage = "https://github.com/python-trio/async_generator";
35 license = with licenses; [ mit asl20 ];
36 maintainers = with maintainers; [ dotlambda ];