11 buildPythonPackage rec {
12 pname = "nest-asyncio";
16 disabled = pythonOlder "3.8";
18 src = fetchFromGitHub {
20 repo = "nest_asyncio";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-5I5WItOl1QpyI4OXZgZf8GiQ7Jlo+SJbDicIbernaU4=";
30 nativeCheckInputs = [ pytestCheckHook ];
32 pythonImportsCheck = [ "nest_asyncio" ];
35 description = "Patch asyncio to allow nested event loops";
36 homepage = "https://github.com/erdewit/nest_asyncio";
37 changelog = "https://github.com/erdewit/nest_asyncio/releases/tag/v${version}";
38 license = licenses.bsdOriginal;