guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit a45da837ddaa6288cbf4af0e590b020e1d1e4c58
Author: Sharlatan Hellseher <[email protected]>
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 ec0d506818..6c7edd9937 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24070,16 +24070,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")