Skip to content

Commit

Permalink
manga-ocr: 0.1.12 -> 0.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent2916 committed Oct 27, 2024
1 parent 249db36 commit 10e12ee
Showing 1 changed file with 11 additions and 14 deletions.
25 changes: 11 additions & 14 deletions pkgs/by-name/ma/manga-ocr/package.nix
Original file line number Diff line number Diff line change
@@ -1,30 +1,27 @@
{
lib,
fetchFromGitHub,
python3Packages,
python3,
}:

with python3Packages;

buildPythonPackage rec {
python3.pkgs.buildPythonPackage rec {
pname = "manga-ocr";
version = "0.1.12";
disabled = pythonOlder "3.7";
format = "pyproject";
version = "0.1.13";
disabled = python3.pkgs.pythonOlder "3.7";
pyproject = true;

src = fetchFromGitHub {
owner = "kha-white";
repo = "manga-ocr";
rev = "refs/tags/v${version}";
hash = "sha256-uSWnrHS59fNcF7ve3imMwwNJ+/dmplBAavbDoBkEgGc=";
hash = "sha256-0EwXDMnA9SCmSsMVXnMenSFSzs74lorFNNym9y/NNsI=";
};

build-system = [
build-system = with python3.pkgs; [
setuptools
setuptools-scm
];

dependencies = [
dependencies = with python3.pkgs; [
fire
fugashi
jaconv
Expand All @@ -37,11 +34,11 @@ buildPythonPackage rec {
unidic-lite
];

meta = with lib; {
meta = {
description = "Optical character recognition for Japanese text, with the main focus being Japanese manga";
homepage = "https://github.com/kha-white/manga-ocr";
changelog = "https://github.com/kha-white/manga-ocr/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ laurent-f1z1 ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ laurent-f1z1 ];
};
}

0 comments on commit 10e12ee

Please sign in to comment.