guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

103/222: gnu: python-lazy-object-proxy: Update to 1.10.0.


From: guix-commits
Subject: 103/222: gnu: python-lazy-object-proxy: Update to 1.10.0.
Date: Fri, 1 Nov 2024 10:56:32 -0400 (EDT)

sharlatan pushed a commit to branch python-team
in repository guix.

commit 8291b99c266a1554f125ed2c989cc0a62414a449
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed May 8 00:23:47 2024 +0200

    gnu: python-lazy-object-proxy: Update to 1.10.0.
    
    * gnu/packages/python-xyz.scm (python-lazy-object-proxy): Update to 1.10.0.
    [build-system]: Use pyproject-build-system.
    [native-inputs]: Add python-pip, python-setuptools, and python-wheel.
    
    Change-Id: I00dc2fa164c8b7ca8b13ac8537c30d1fdb507b9f
---
 gnu/packages/python-xyz.scm | 23 +++++++++++++----------
 1 file changed, 13 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6a2e3f9e2e..dc5d1acc2a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22272,18 +22272,21 @@ times.
 (define-public python-lazy-object-proxy
   (package
     (name "python-lazy-object-proxy")
-    (version "1.5.1")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "lazy-object-proxy" version))
-              (sha256
-               (base32
-                "0hwh29m9wa582ramj30p4pysckdrmki1z1b8iaaxk6mpfx2kc8wp"))))
+    (version "1.10.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "lazy-object-proxy" version))
+       (sha256
+        (base32 "0sdc92bbzy6slcl432j04mr131cy8n0many26ppm4fpl8mnpn93q"))))
+    (build-system pyproject-build-system)
     (native-inputs
-     (list python-setuptools-scm))
-    (build-system python-build-system)
+     (list python-pip
+           python-setuptools
+           python-setuptools-scm
+           python-wheel))
     (home-page "https://github.com/ionelmc/python-lazy-object-proxy";)
-    (synopsis "Lazy object proxy for python")
+    (synopsis "Lazy object proxy for Python")
     (description
      "Lazy object proxy is an object that wraps a callable but defers the call
 until the object is actually required, and caches the result of said call.")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]