diff --git a/pkgs/development/python-modules/hikari/default.nix b/pkgs/development/python-modules/hikari/default.nix index 92a26c231d0c..915c77e1e156 100644 --- a/pkgs/development/python-modules/hikari/default.nix +++ b/pkgs/development/python-modules/hikari/default.nix @@ -35,7 +35,6 @@ buildPythonPackage rec { ''; }; - propagatedBuildInputs = [ aiohttp attrs @@ -64,6 +63,9 @@ buildPythonPackage rec { postPatch = '' substituteInPlace hikari/_about.py \ --replace-fail "__git_sha1__: typing.Final[str] = \"HEAD\"" "__git_sha1__: typing.Final[str] = \"$(cat $src/COMMIT)\"" + # XXX: Remove once pytest-asyncio is updated to 0.24+ + substituteInPlace pyproject.toml \ + --replace-fail "asyncio_default_fixture_loop_scope = \"func\"" "" ''; meta = { @@ -71,6 +73,9 @@ buildPythonPackage rec { homepage = "https://www.hikari-py.dev/"; changelog = "https://github.com/hikari-py/hikari/releases/tag/${version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tomodachi94 sigmanificient ]; + maintainers = with lib.maintainers; [ + tomodachi94 + sigmanificient + ]; }; }