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

commit 0c12ae1b1e11d074ad995cefec67905bcf411b2c
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Sun Aug 10 01:19:18 2025 +0100

    gnu: python-pyaml: Update to 25.7.0.
    
    * gnu/packages/python-xyz.scm (python-pyaml): Update to 25.7.0.
      [build-system]: Use pyproject.
      [native-inputs]: Remove python-unidecode; add python-pytest and
      python-setuptools.
    
    Change-Id: I3a25ddf5e1e1d4a94915f230182ffa6a607b4cb8
---
 gnu/packages/python-xyz.scm | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d64946854a..9aa8b36bb7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24048,16 +24048,17 @@ addresses, and phone numbers.")
 (define-public python-pyaml
   (package
     (name "python-pyaml")
-    (version "21.10.1")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "pyaml" version))
-              (sha256
-               (base32
-                "10w3frzqir5sbpglc9bwb8w414dsivmcvji07yxy61mz2gp9ylf6"))))
-    (build-system python-build-system)
+    (version "25.7.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pyaml" version))
+       (sha256
+        (base32 "16yrflm7iyz82igpzlba16cbvwfwny2fnarf14mvz0b8q57ac4z1"))))
+    (build-system pyproject-build-system)
     (native-inputs
-     (list python-unidecode))
+     (list python-pytest
+           python-setuptools))
     (propagated-inputs
      (list python-pyyaml))
     (home-page "https://github.com/mk-fg/pretty-yaml";)

Reply via email to