7 buildPythonPackage rec {
9 pname = "nest_asyncio";
10 disabled = !(pythonAtLeast "3.5");
13 inherit pname version;
14 sha256 = "eaa09ef1353ebefae19162ad423eef7a12166bcc63866f8bff8f3635353cd9fa";
17 # tests not packaged with source dist as of 1.3.2/1.3.2, and
18 # can't check tests out of GitHub easily without specific commit IDs (no tagged releases)
20 pythonImportsCheck = [ "nest_asyncio" ];
23 description = "Patch asyncio to allow nested event loops";
24 homepage = "https://github.com/erdewit/nest_asyncio";
25 license = licenses.bsdOriginal;
26 maintainers = with maintainers; [ costrouc ];