From 927e68d8270accccdfa4d97ea2131dcd71b947db Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 4 Dec 2025 13:02:52 +0900 Subject: [PATCH] gnu: Add python-roman-numerals. * gnu/packages/python-xyz.scm (python-roman-numerals): New variable. Change-Id: Idd5ad0a8ba7cc2a6acac5948af4a8c8dd5999277 Signed-off-by: Sharlatan Hellseher --- 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 1914da4b305..dadb73447b1 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")