guix_mirror_bot pushed a commit to branch python-team in repository guix. commit a0f7e9ab02d432e94bddecc288b4a9e6662c3453 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Tue Jul 15 23:48:57 2025 +0100
gnu: python-lazy-object-proxy: Update to 1.11.0. * gnu/packages/python-xyz.scm (python-lazy-object-proxy): Update to 1.11.0. [native-inputs]: Remove python-pip; add python-pytest and python-pytest-benchmark. Change-Id: I8bee8c95755ad89733f03291a8403689b2a52125 --- gnu/packages/python-xyz.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9cbfda0ce0..2a3c3af037 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -23713,16 +23713,17 @@ times. (define-public python-lazy-object-proxy (package (name "python-lazy-object-proxy") - (version "1.10.0") + (version "1.11.0") (source (origin (method url-fetch) - (uri (pypi-uri "lazy-object-proxy" version)) + (uri (pypi-uri "lazy_object_proxy" version)) (sha256 - (base32 "0sdc92bbzy6slcl432j04mr131cy8n0many26ppm4fpl8mnpn93q")))) + (base32 "174fswfrsqr7yj72f8fyry34qxgagbfw37vzljxbp7schq8l91qq")))) (build-system pyproject-build-system) (native-inputs - (list python-pip + (list python-pytest + python-pytest-benchmark python-setuptools python-setuptools-scm python-wheel))