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
This commit is contained in:
Sharlatan Hellseher 2025-08-10 01:19:18 +01:00
parent 9aecd35c1a
commit 21e6cd3987
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -24053,16 +24053,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")