guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit aa04347be8e4178fcba5637ee2773eac8c1df50c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri May 29 23:40:28 2026 +0100
gnu: python-lazy-object-proxy: Update to 1.12.0.
* gnu/packages/python-xyz.scm (python-lazy-object-proxy): Update to 1.12.0.
[native-inputs]: Remove python-wheel.
Change-Id: Ida595f362e80c46c64641695b367edc561cc37d9
---
gnu/packages/python-xyz.scm | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a7376ea8d7..2024c19b04 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23336,20 +23336,22 @@ times.
(define-public python-lazy-object-proxy
(package
(name "python-lazy-object-proxy")
- (version "1.11.0")
+ (version "1.12.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "lazy_object_proxy" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ionelmc/python-lazy-object-proxy")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "174fswfrsqr7yj72f8fyry34qxgagbfw37vzljxbp7schq8l91qq"))))
+ (base32 "1qig879igkjmj4mir26b0n40w3vn5jqn293172s6npxnb4k90kzk"))))
(build-system pyproject-build-system)
(native-inputs
(list python-pytest
python-pytest-benchmark
python-setuptools
- python-setuptools-scm
- python-wheel))
+ python-setuptools-scm))
(home-page "https://github.com/ionelmc/python-lazy-object-proxy")
(synopsis "Lazy object proxy for Python")
(description