summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-07-22 00:28:52 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-07-23 16:24:25 +0100
commitb23aaf7eae48d68b0e8e096ff16fa7f8fe77b1a1 (patch)
tree2d40a491909fceeaa94f269975dc0772c2f30576 /gnu/packages/python-web.scm
parente5226ef22fbad8ded56ed9ed903597ab1de88766 (diff)
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 6dbf3f57148..1635847a805 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3919,6 +3919,7 @@ Databricks REST APIs.")
3919 (license license:asl2.0))) 3919 (license license:asl2.0)))
3920 3920
3921(define-public python-openid-cla 3921(define-public python-openid-cla
3922 ;; XXX: Last updated in 2015.
3922 (package 3923 (package
3923 (name "python-openid-cla") 3924 (name "python-openid-cla")
3924 (version "1.2") 3925 (version "1.2")
@@ -3929,8 +3930,9 @@ Databricks REST APIs.")
3929 (sha256 3930 (sha256
3930 (base32 3931 (base32
3931 "102hy2qisvjxp5s0v9lvwqi4f2dk0dhns40vjgn008yxc7k0h3cr")))) 3932 "102hy2qisvjxp5s0v9lvwqi4f2dk0dhns40vjgn008yxc7k0h3cr"))))
3932 (build-system python-build-system) 3933 (build-system pyproject-build-system)
3933 (arguments '(#:tests? #f)) ; No tests. 3934 (arguments '(#:tests? #f)) ; No tests.
3935 (native-inputs (list python-setuptools python-wheel))
3934 (propagated-inputs (list python-openid python-six)) 3936 (propagated-inputs (list python-openid python-six))
3935 (home-page "https://github.com/puiterwijk/python-openid-cla/") 3937 (home-page "https://github.com/puiterwijk/python-openid-cla/")
3936 (synopsis "Implementation of the OpenID CLA extension for python-openid") 3938 (synopsis "Implementation of the OpenID CLA extension for python-openid")