lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.aionotify: patch away loop kwarg in wait_for call

Fixes python3.10 compat

+5
+5
pkgs/development/python-modules/aionotify/default.nix
··· 18 18 19 19 disabled = pythonOlder "3.5"; 20 20 21 + preCheck = '' 22 + substituteInPlace tests/test_usage.py \ 23 + --replace "asyncio.wait_for(task, timeout, loop=self.loop)" "asyncio.wait_for(task, timeout)" 24 + ''; 25 + 21 26 checkInputs = [ 22 27 asynctest 23 28 ];