29 lines
893 B
Scheme
29 lines
893 B
Scheme
(define-module (manga-ocr))
|
|
|
|
|
|
(define-public manga-ocr
|
|
(package
|
|
(name "manga-ocr")
|
|
(version "0.1.11")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (pypi-uri "manga-ocr" version))
|
|
(sha256
|
|
(base32 "1sxhk613ag1vk5hm6zxa0npjcn4gn0bgf1bq7id56qw44rlq1ki1"))))
|
|
(build-system pyproject-build-system)
|
|
(propagated-inputs (list python-fire
|
|
python-fugashi
|
|
python-jaconv
|
|
python-loguru
|
|
python-numpy
|
|
python-pillow
|
|
python-pyperclip
|
|
python-torch
|
|
python-transformers
|
|
python-unidic-lite))
|
|
(home-page "https://github.com/kha-white/manga-ocr")
|
|
(synopsis "OCR for Japanese manga")
|
|
(description "OCR for Japanese manga")
|
|
(license #f)))
|