summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-16 15:07:32 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:20 +0100
commite5d9fb0792cfa1db1362e18d4c4ad0f81887a005 (patch)
tree04412bffbec2b61c70f3432f6319b615c9a936e3
parent7668bd6854be047919501fd0d6fa1c79a84e326d (diff)
gnu: Add python-domdf-python-tools.
* gnu/packages/python-xyz.scm (python-domdf-python-tools): New variable. Change-Id: If3da8a2193001129bcc95b2bc2866bbdabe60547
-rw-r--r--gnu/packages/python-xyz.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b598882b4d3..a5210871ea7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -762,6 +762,29 @@ Sorensen distance, plus some bonuses. All distance computations are
implemented in pure Python, and most of them are also implemented in C.")
(license license:gpl2+)))
+(define-public python-domdf-python-tools
+ (package
+ (name "python-domdf-python-tools")
+ (version "3.10.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "domdf_python_tools" version))
+ (sha256
+ (base32 "16727afn92bp6hj4hvp27scc5ldz1y27z9abbxgi9sgiyk90iqra"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-hatch-requirements-txt))
+ (arguments (list #:tests? #f)) ;no tests in PyPI archive
+ (propagated-inputs
+ (list python-natsort
+ python-typing-extensions))
+ (home-page "https://github.com/domdfcoding/domdf_python_tools")
+ (synopsis "Helpful functions for Python")
+ (description
+ "This package provide helpfull functions for Python's testing and
+packaging tasks.")
+ (license license:expat)))
+
(define-public python-fastnumbers
(package
(name "python-fastnumbers")