diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-13 17:59:11 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-30 18:34:54 +0000 |
| commit | 526cf9a292c3026ea22d3fcd307bfef790946b75 (patch) | |
| tree | 448ec1dbe7dff2f1e5798fbac9eb9667c427611c /gnu | |
| parent | afc0a6531ba4ff39b423c80eb51df139638fb5d1 (diff) | |
gnu: Add python-chameleon.
* gnu/packages/python-xyz.scm (python-chameleon): New variable.
Change-Id: I33237b19a76bf37402ac7f1e386704fd299403a4
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 28a55bb13bd..94a3cb35920 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -598,6 +598,29 @@ line drawing algorithm}.") understanding ECMA script.") (license license:expat))) +(define-public python-chameleon + (package + (name "python-chameleon") + (version "4.6.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "Chameleon" version)) + (sha256 + (base32 "06qwg3sk26m53b1sl8b798scik7klkx53vijs7d8mwzpyqlxf34i")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools)) + (home-page "https://chameleon.readthedocs.io") + (synopsis "Fast HTML/XML Template Compiler") + (description + "Chameleon is an HTML/XML template engine for Python. It uses the page +templates language.") + ;; Project is duo licensed, see: LICENSE.txt. + (license (list license:zpl2.1 + license:psfl)))) + (define-public python-copydetect (package (name "python-copydetect") |
