Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / jamo / default.nix
blob058df62cb0419a75946c39d83f2f9fdafe2efd9c
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "jamo";
9   version = "0.4.1";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "JDongian";
14     repo = "python-jamo";
15     rev = "refs/tags/v${version}";
16     hash = "sha256-QHI3Rqf1aQOsW49A/qnIwRnPuerbtyerf+eWIiEvyho=";
17   };
19   pythonImportsCheck = [
20     "jamo"
21   ];
23   nativeCheckInputs = [
24     pytestCheckHook
25   ];
27   meta = with lib; {
28     changelog = "https://github.com/JDongian/python-jamo/releases/tag/v${version}";
29     description = "Hangul syllable decomposition and synthesis using jamo";
30     homepage = "https://github.com/JDongian/python-jamo";
31     license = licenses.asl20;
32     maintainers = teams.tts.members;
33   };