summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-07-20 10:08:43 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-07-20 10:47:57 +0100
commit3607f10dac84102e264a0f377f4891b73fefe93b (patch)
tree4ad1f1659a0ce1e9e2e4dbd0e3cdd5d02dbc82c5
parent39c52c441e4b98f0198de42d10fffcdde18c5c30 (diff)
gnu: python-pyramid-debugtoolbar: Build from git.
* gnu/packages/python-web.scm (python-pyramid-debugtoolbar): [source]: Switch to git-fetch. [propagated-inputs]: Add python-selenium.
-rw-r--r--gnu/packages/python-web.scm15
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index f966d2e3e41..3827220e9b8 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -11390,10 +11390,13 @@ request/response web apps to larger, grown applications.")
11390 (version "4.12.1") 11390 (version "4.12.1")
11391 (source 11391 (source
11392 (origin 11392 (origin
11393 (method url-fetch) 11393 (method git-fetch)
11394 (uri (pypi-uri "pyramid_debugtoolbar" version)) 11394 (uri (git-reference
11395 (url "https://github.com/Pylons/pyramid_debugtoolbar")
11396 (commit version)))
11397 (file-name (git-file-name name version))
11395 (sha256 11398 (sha256
11396 (base32 "0gdlc7vcga4vzma53h5csnhh4gwfmv3w8v9y5fhwqpy8979qis3i")))) 11399 (base32 "0kalb5rsrlcz62zv9a39kp28mvwg9j6gymvzxbybdnvk51v9if56"))))
11397 (build-system pyproject-build-system) 11400 (build-system pyproject-build-system)
11398 (arguments 11401 (arguments
11399 (list 11402 (list
@@ -11414,14 +11417,14 @@ request/response web apps to larger, grown applications.")
11414 python-pyramid-chameleon 11417 python-pyramid-chameleon
11415 python-pyramid-jinja2 11418 python-pyramid-jinja2
11416 python-pyramid-mako 11419 python-pyramid-mako
11417 ;; python-selenium ; see: guix/guix#3478 11420 python-selenium
11418 python-sqlalchemy 11421 python-sqlalchemy
11419 python-waitress)) 11422 python-waitress))
11420 (home-page "https://github.com/Pylons/pyramid_debugtoolbar") 11423 (home-page "https://github.com/Pylons/pyramid_debugtoolbar")
11421 (synopsis "Pyramid debug toolbar") 11424 (synopsis "Pyramid debug toolbar")
11422 (description 11425 (description
11423 "This package provides an interactive HTML debugger for Pyramid application 11426 "This package provides an interactive HTML debugger for Pyramid
11424development.") 11427application development.")
11425 (license license:bsd-3))) 11428 (license license:bsd-3)))
11426 11429
11427(define-public python-pyramid-jinja2 11430(define-public python-pyramid-jinja2