python-roman.scm 756 B

123456789101112131415161718192021222324252627282930
  1. (define-module (python-roman)
  2. #:use-module (guix packages)
  3. #:use-module (guix utils)
  4. #:use-module (gnu packages python)
  5. #:use-module (guix download)
  6. #:use-module (guix licenses)
  7. #:use-module (guix build-system python))
  8. (define-public python-roman
  9. (package
  10. (name "python-roman")
  11. (version "3.3")
  12. (source
  13. (origin
  14. (method url-fetch)
  15. (uri (pypi-uri "roman" version))
  16. (sha256
  17. (base32
  18. "0gyp2bmw47jgpm8j64gydzqq838bgxz5gh6cm57lxlr7p26sqiic"))))
  19. (build-system python-build-system)
  20. (home-page
  21. "https://github.com/zopefoundation/roman")
  22. (synopsis "Integer to Roman numerals converter")
  23. (description
  24. "Integer to Roman numerals converter")
  25. (license #f)))
  26. python-roman