summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authororahcio <orahcio@gmail.com>2026-06-04 09:33:15 -0300
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-06-10 15:24:25 +0100
commit33262e30bf4631a520932218066ad56116500ca7 (patch)
tree64cb41bd1b88cf6a8c3273d157e08c6580030db5 /gnu/packages/python-web.scm
parent8823b9bf41e9417d1c30f27168b7cca597e2a24b (diff)
gnu: Add python-dominate.
* gnu/packages/python-web.scm (python-dominate): New variable. Relates-to: guix/guix!9019 Change-Id: I0d8e9d3ff2982dbc35eda1096e3b857e2df9a380 Reviewed-by: Hugo Buddelmeijer <hugo@buddelmeijer.nl> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index e854d553dbb..68d987a17c3 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -997,6 +997,30 @@ Async mode for @url{https://domainconnect.org/, Domain Connect protocol}.")
997@url{https://www.domainconnect.org/, Domain Connect} protocol.") 997@url{https://www.domainconnect.org/, Domain Connect} protocol.")
998 (license license:expat))) 998 (license license:expat)))
999 999
1000(define-public python-dominate
1001 (package
1002 (name "python-dominate")
1003 (version "2.9.1")
1004 (source
1005 (origin
1006 (method git-fetch)
1007 (uri (git-reference
1008 (url "https://github.com/Knio/dominate")
1009 (commit version)))
1010 (file-name (git-file-name name version))
1011 (sha256
1012 (base32 "0kv5ly8w2026pwvgamfjxav1g58wmgim30nr9w9qfwcipfjxwn5c"))))
1013 (build-system pyproject-build-system)
1014 (native-inputs
1015 (list python-pytest
1016 python-setuptools))
1017 (home-page "https://github.com/Knio/dominate")
1018 (synopsis "Python library for creating and manipulating HTML documents")
1019 (description
1020 "Dominate is a Python library for creating and manipulating HTML
1021documents using an elegant DOM API.")
1022 (license license:lgpl3+)))
1023
1000(define-public python-dropbox 1024(define-public python-dropbox
1001 (package 1025 (package
1002 (name "python-dropbox") 1026 (name "python-dropbox")