guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit d6c55773ce09c3a02a0bc214bb47332666fc7e0c
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Wed Jul 16 15:07:32 2025 +0100

    gnu: Add python-domdf-python-tools.
    
    * gnu/packages/python-xyz.scm (python-domdf-python-tools): New variable.
    
    Change-Id: If3da8a2193001129bcc95b2bc2866bbdabe60547
---
 gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 917550bee9..304a3ced25 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -682,6 +682,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-flake8-class-newline
   (package
     (name "python-flake8-class-newline")

Reply via email to