gnu: python-voluptuous: Update to 0.15.2.

* gnu/packages/python-xyz.scm (python-voluptuous): Update to 0.15.2.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Remove python-nose; add python-pytest and
python-setuptools.

Change-Id: I306b65ff59e9cb1e4d7400ab057912bae072e520
This commit is contained in:
Sharlatan Hellseher 2025-09-16 09:51:53 +01:00
parent f724e55ff7
commit 3dcef099e3
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -33715,17 +33715,17 @@ Open Sound Control 1.0} specification.")
(define-public python-voluptuous
(package
(name "python-voluptuous")
(version "0.11.7")
(version "0.15.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "voluptuous" version))
(sha256
(base32
"0mplkcpb5d8wjf8vk195fys4y6a3wbibiyf708imw33lphfk9g1a"))))
(build-system python-build-system)
(origin
(method url-fetch)
(uri (pypi-uri "voluptuous" version))
(sha256
(base32 "1akr0adq9can0ibravqzl4aaf20rgv47g9gk596hn8ykqhrapz3g"))))
(build-system pyproject-build-system)
(native-inputs
(list python-nose))
(list python-pytest
python-setuptools))
(home-page "https://github.com/alecthomas/voluptuous")
(synopsis "Python data validation library")
(description