biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / jamo / default.nix
blobcccd9fe6c3463a3883d8d5ed2fdc7e9a6b22ece8
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytestCheckHook,
6 }:
8 buildPythonPackage rec {
9   pname = "jamo";
10   version = "0.4.1";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "JDongian";
15     repo = "python-jamo";
16     rev = "refs/tags/v${version}";
17     hash = "sha256-QHI3Rqf1aQOsW49A/qnIwRnPuerbtyerf+eWIiEvyho=";
18   };
20   pythonImportsCheck = [ "jamo" ];
22   nativeCheckInputs = [ pytestCheckHook ];
24   meta = with lib; {
25     changelog = "https://github.com/JDongian/python-jamo/releases/tag/v${version}";
26     description = "Hangul syllable decomposition and synthesis using jamo";
27     homepage = "https://github.com/JDongian/python-jamo";
28     license = licenses.asl20;
29     maintainers = teams.tts.members;
30   };