guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 40f63c113404d9600bac069856d46b4d759e5275
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Jan 17 23:58:00 2026 +0000
gnu: python-wrapt: Update to 2.0.1.
* gnu/packages/python-xyz.scm (python-wrapt): Update to 2.0.1.
[native-inputs]: Remove python-wheel; add python-mypy.
Change-Id: Id3ba54ce1a68e16f2b083bb826c94fe62820bacd
---
gnu/packages/python-xyz.scm | 17 +++++++++++++----
1 file changed, 13 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 682000a39a..62ae821c19 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -40618,16 +40618,25 @@ notebooks.")
(define-public python-wrapt
(package
(name "python-wrapt")
- (version "1.17.0")
+ (version "2.0.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "wrapt" version))
(sha256
- (base32
- "00886b7ry1vdbvpc2wi880y563xf6y4mxwwfm1q12wvw66i7l60n"))))
+ (base32 "13s6zkcs2291bf73prrnl73wmap04cdv3y443swaqz29g1g6774w"))))
(build-system pyproject-build-system)
- (native-inputs (list python-pytest python-setuptools python-wheel))
+ (arguments
+ (list
+ ;; tests: 562 passed, 1 deselected
+ #:test-flags
+ ;; AssertionError: Output did not match expected for
+ ;; mypy_function_wrapper_fn_t6.py
+ #~(list "--deselect=tests/conftest.py::mypy_function_wrapper_fn_t6")))
+ (native-inputs
+ (list python-mypy ;hard dependencies in tests
+ python-pytest
+ python-setuptools))
(home-page "https://github.com/GrahamDumpleton/wrapt")
(synopsis "Module for decorators, wrappers and monkey patching")
(description