summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-13 17:59:12 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-30 18:34:54 +0000
commit0f2da75e6a29c0247f2938cab2f545fde5b26f44 (patch)
tree2462e89886af19da698a50321ffe7d8449858ef7 /gnu
parent526cf9a292c3026ea22d3fcd307bfef790946b75 (diff)
gnu: Add python-pyramid-chameleon.
* gnu/packages/python-web.scm (python-pyramid-chameleon): New variable. Change-Id: Id23df46200b0315bd5eeef45a8ea16f93b2936d1
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-web.scm32
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index fdba733d6f2..4b77334b40e 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -10190,6 +10190,38 @@ changed the process is restarted.")
request/response web apps to larger, grown applications.")
(license license:repoze)))
+(define-public python-pyramid-chameleon
+ ;; PyPI lacks a fresh release, use the latest commit assosiated with
+ ;; unrleased version, see:
+ ;; <https://github.com/Pylons/pyramid_chameleon/issues/27>
+ (let ((commit "956c77ba37120c430e871c834d3cd4ed5ac8dccf")
+ (revision "0"))
+ (package
+ (name "python-pyramid-chameleon")
+ (version (git-version "0.4.dev0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Pylons/pyramid_chameleon")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0rsb921xi7736h1xikc904bq2zzmrj1g8qgyimjw5wxdcd8927b1"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest
+ python-setuptools))
+ (propagated-inputs
+ (list python-chameleon
+ python-pyramid))
+ (home-page "https://github.com/Pylons/pyramid_chameleon")
+ (synopsis "Chameleon template compiler for pyramid")
+ (description
+ "These package provides bindings for the Chameleon templating system
+ for the Pyramid web framework.")
+ (license license:repoze))))
+
(define-public python-random-user-agent
(package
(name "python-random-user-agent")