python312Packages.epitran: init at 1.24

This commit is contained in:
Radik Islamov 2024-04-27 06:06:11 +05:00
parent be7b8e7367
commit 82f33379bb
No known key found for this signature in database
GPG Key ID: D0B0CBDAF7A902DC
2 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,58 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
unittestCheckHook,
setuptools,
regex,
panphon,
marisa-trie,
requests,
}:
buildPythonPackage rec {
pname = "epitran";
version = "1.24";
pyproject = true;
src = fetchFromGitHub {
owner = "dmort27";
repo = "epitran";
rev = "refs/tags/${version}";
hash = "sha256-AH4q8J5oMaUVJ559qe/ZlJXlCcGdxWnxMhnZKCH5Rlk=";
};
build-system = [ setuptools ];
dependencies = [
regex
panphon
marisa-trie
requests
];
nativeCheckInputs = [ unittestCheckHook ];
unittestFlagsArray = [
"-s"
"test"
];
pythonImportsCheck = [
"epitran"
"epitran.backoff"
"epitran.vector"
];
meta = with lib; {
description = "Tools for transcribing languages into IPA";
homepage = "https://github.com/dmort27/epitran";
changelog = "https://github.com/dmort27/epitran/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ vizid ];
};
}

View File

@ -3849,6 +3849,8 @@ self: super: with self; {
epion = callPackage ../development/python-modules/epion { };
epitran = callPackage ../development/python-modules/epitran { };
epson-projector = callPackage ../development/python-modules/epson-projector { };
equinox = callPackage ../development/python-modules/equinox { };