Files
nixpkgs/pkgs/development/python-modules/jaconv/default.nix
T
Martin Weinelt 1107200f48 python3Packages.jaconv: 0.3.4 -> 0.4.1
https://github.com/ikegami-yukino/jaconv/blob/v0.4.1/CHANGES.rst

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:21 +01:00

35 lines
816 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "jaconv";
version = "0.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "ikegami-yukino";
repo = "jaconv";
tag = "v${version}";
hash = "sha256-43sziwJ/SDdpLHJyGXyI5nXEofbos2W+NV7DlOpWWa8=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "jaconv" ];
meta = {
description = "Python Japanese character interconverter for Hiragana, Katakana, Hankaku and Zenkaku";
homepage = "https://github.com/ikegami-yukino/jaconv";
changelog = "https://github.com/ikegami-yukino/jaconv/blob/${src.tag}/CHANGES.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}