guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit bd52e6763c780fc465f56d3e74631536a9c21367
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Sep 16 09:51:53 2025 +0100
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
---
gnu/packages/python-xyz.scm | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 38426d1599..dc421b4bed 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -33732,17 +33732,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