fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
31 lines
739 B
Nix
31 lines
739 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jamo";
|
|
version = "0.4.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JDongian";
|
|
repo = "python-jamo";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-QHI3Rqf1aQOsW49A/qnIwRnPuerbtyerf+eWIiEvyho=";
|
|
};
|
|
|
|
pythonImportsCheck = [ "jamo" ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/JDongian/python-jamo/releases/tag/v${version}";
|
|
description = "Hangul syllable decomposition and synthesis using jamo";
|
|
homepage = "https://github.com/JDongian/python-jamo";
|
|
license = licenses.asl20;
|
|
maintainers = teams.tts.members;
|
|
};
|
|
}
|