diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-07 08:00:22 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-07 08:03:38 +0100 |
commit | 0fa408345ae9a46cba2ead461b9d630a0061fbbc (patch) | |
tree | 11880c1f1c28a54a86c1b5b66da67639e1b00e17 | |
parent | 658dc3ff5efb3f17e66d4f692a45805fae007989 (diff) | |
download | guix-0fa408345ae9a46cba2ead461b9d630a0061fbbc.tar.gz guix-0fa408345ae9a46cba2ead461b9d630a0061fbbc.zip |
gnu: python-pysdl2: Fix PyPI archive name.
As seen in CI <https://ci.guix.gnu.org/build/10630201/log/raw>, it
failed to download the archive with name "PySDL2" which has been
changed.
* gnu/packages/python-graphics.scm (python-pysdl2): [source] <pypi-uri>:
Fix it as the name has been changed in PyPI.
Change-Id: I30e963294fb441404552402d2ed749344d917b8e
-rw-r--r-- | gnu/packages/python-graphics.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-graphics.scm b/gnu/packages/python-graphics.scm index fcce80a2a1..050be99f16 100644 --- a/gnu/packages/python-graphics.scm +++ b/gnu/packages/python-graphics.scm @@ -621,7 +621,7 @@ library.") (source (origin (method url-fetch) - (uri (pypi-uri "PySDL2" version)) + (uri (pypi-uri "pysdl2" version)) (sha256 (base32 "19id1qswgcj4v4j5kn49shq1xxx3slhjpm0102w87mczsdbi1rck")))) (build-system pyproject-build-system) |