gnu: Add python-roman-numerals.

* gnu/packages/python-xyz.scm (python-roman-numerals): New variable.

Change-Id: Idd5ad0a8ba7cc2a6acac5948af4a8c8dd5999277
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Maxim Cournoyer 2025-12-04 13:02:52 +09:00 committed by Sharlatan Hellseher
parent 914ec73404
commit 927e68d827
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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")