Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport release-24.11] python312Packages.hikari: fix build #357063

Merged
merged 2 commits into from
Nov 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
python3Packages.hikari: fix build
Remove the `asyncio_default_fixture_loop_scope` from pyproject.toml

(cherry picked from commit f278e7f)
itepastra authored and github-actions[bot] committed Nov 18, 2024
commit f654eacd9960f670e1c8c64440c00d0ab4221560
3 changes: 3 additions & 0 deletions pkgs/development/python-modules/hikari/default.nix
Original file line number Diff line number Diff line change
@@ -63,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 = {