123456789101112131415161718192021222324252627282930 |
- (define-module (python-roman)
- #:use-module (guix packages)
- #:use-module (guix utils)
- #:use-module (gnu packages python)
- #:use-module (guix download)
- #:use-module (guix licenses)
- #:use-module (guix build-system python))
- (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
- "Integer to Roman numerals converter")
- (license #f)))
- python-roman
|