From ed265b4e1d9cd93bcffe458468bcef68c4bcc934 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 17 Jan 2026 23:58:00 +0000 Subject: [PATCH] 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 27035a9ae45..d5e36ea7f3d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -40562,16 +40562,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