guix_mirror_bot pushed a commit to branch master
in repository guix.

commit b23aaf7eae48d68b0e8e096ff16fa7f8fe77b1a1
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Jul 22 00:28:52 2025 +0200

    gnu: python-openid-cla: Switch to pyproject.
    
    * gnu/packages/python-web.scm (python-openid-cla)
    [build-system]: Switch to pyproject-build-system.
    [native-inputs]: Add python-setuptools, python-wheel.
    
    Change-Id: If980a67a28a210f11e1d122426ed5b771b54ae07
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-web.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 6dbf3f5714..1635847a80 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3919,6 +3919,7 @@ Databricks REST APIs.")
     (license license:asl2.0)))
 
 (define-public python-openid-cla
+  ;; XXX: Last updated in 2015.
   (package
     (name "python-openid-cla")
     (version "1.2")
@@ -3929,8 +3930,9 @@ Databricks REST APIs.")
        (sha256
         (base32
          "102hy2qisvjxp5s0v9lvwqi4f2dk0dhns40vjgn008yxc7k0h3cr"))))
-    (build-system python-build-system)
+    (build-system pyproject-build-system)
     (arguments '(#:tests? #f)) ; No tests.
+    (native-inputs (list python-setuptools python-wheel))
     (propagated-inputs (list python-openid python-six))
     (home-page "https://github.com/puiterwijk/python-openid-cla/";)
     (synopsis "Implementation of the OpenID CLA extension for python-openid")

Reply via email to