Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "mokuro";
|
|
version = "0.2.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kha-white";
|
|
repo = "mokuro";
|
|
tag = "v${version}";
|
|
hash = "sha256-cdbkculYPPWCSqBufpgt4EU3ne6KU2Dxk0xsvkdMZHA=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
build-system = with python3Packages; [ setuptools-scm ];
|
|
|
|
dependencies = with python3Packages; [
|
|
fire
|
|
loguru
|
|
manga-ocr
|
|
natsort
|
|
numpy
|
|
opencv-python
|
|
pillow
|
|
pyclipper
|
|
requests
|
|
scipy
|
|
shapely
|
|
torch
|
|
torchsummary
|
|
torchvision
|
|
transformers
|
|
tqdm
|
|
yattag
|
|
];
|
|
|
|
# tests try to use the network
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
changelog = "https://github.com/kha-white/mokuro/releases/tag/v${version}";
|
|
description = "Read Japanese manga inside browser with selectable text";
|
|
homepage = "https://github.com/kha-white/mokuro";
|
|
license = lib.licenses.gpl3Only;
|
|
mainProgram = "mokuro";
|
|
maintainers = with lib.maintainers; [ tomasajt ];
|
|
};
|
|
}
|