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

commit ed3904418b410ad783bb42f2e3bbe20f49b11503
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Thu Dec 4 13:02:52 2025 +0900

    gnu: Add python-roman-numerals.
    
    * gnu/packages/python-xyz.scm (python-roman-numerals): New variable.
    
    Change-Id: Idd5ad0a8ba7cc2a6acac5948af4a8c8dd5999277
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9e785779a0..a47ae8bbcf 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2220,6 +2220,24 @@ edit distance algorithm for Python in Cython for high 
performance.")
 requiring minimal changes to the code.")
     (license license:expat)))
 
+(define-public python-roman-numerals
+  (package
+    (name "python-roman-numerals")
+    (version "3.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "roman_numerals" version))
+       (sha256
+        (base32 "0l956dwchx6hjncax2kh7xdk8ymfz90jhrxkpmhx6jwd3vy3ckiq"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-flit-core python-pytest))
+    (home-page "https://pypi.org/project/roman-numbers/";)
+    (synopsis "Python library to manipulate Roman numerals")
+    (description "This package provides a Python library to manipulate
+well-formed Roman numerals.")
+    (license license:expat)))
+
 (define-public python-rush
   (package
     (name "python-rush")

Reply via email to