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