guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 66a8783876eb0f5dce7924fa1e8deb0eaa2e4944
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat May 30 14:21:23 2026 +0100

    gnu: python-pyyaml: Update to 6.0.3.
    
    * gnu/packages/python-xyz.scm (python-pyyaml): Update to 6.0.3.
    [source]: Switch to git-fetch.
    [native-inputs]: Remove python-wheel.
    
    Change-Id: Ibbccb63301bd853506c0aa92ff2eb887e0a5472e
---
 gnu/packages/python-xyz.scm | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4fa095e119..cbc6417411 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9799,19 +9799,21 @@ environments and back.")
 (define-public python-pyyaml
   (package
     (name "python-pyyaml")
-    (version "6.0.2")
+    (version "6.0.3")
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "PyYAML" version))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/yaml/pyyaml";)
+              (commit version)))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "0gmwggzm0j0iprx074g5hah91y2f68sfhhldq0f8crddj7ndk16m"))))
+        (base32 "0w00gkjqx1g8c5gdm9qqznnj7ijzfjqwqgymppqw5lbw38h2hjld"))))
     (build-system pyproject-build-system)
     (native-inputs
      (list python-cython
            python-pytest
-           python-setuptools
-           python-wheel))
+           python-setuptools))
     (inputs
      (list libyaml))
     (home-page "https://pyyaml.org";)

Reply via email to