gnu: Add python-roman.

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

Co-authored-by: jgart <jgart@dismail.de>
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
BonfaceKilz 2021-04-14 23:54:57 +03:00 committed by Efraim Flashner
parent 1bab9b9f17
commit 64fe44fa84
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -3029,6 +3029,25 @@ (define-public python-kitchen
(define-public python2-kitchen (define-public python2-kitchen
(package-with-python2 python-kitchen)) (package-with-python2 python-kitchen))
(define-public python-roman
(package
(name "python-roman")
(version "3.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "roman" version))
(sha256
(base32
"0gyp2bmw47jgpm8j64gydzqq838bgxz5gh6cm57lxlr7p26sqiic"))))
(build-system python-build-system)
(home-page "https://github.com/zopefoundation/roman")
(synopsis "Integer to Roman numerals converter")
(description
"This package provides a small helper library to convert Arabic Numbers
to Roman Numerals.")
(license license:psfl)))
(define-public python-unidecode (define-public python-unidecode
(package (package
(name "python-unidecode") (name "python-unidecode")