summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
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")