depot/third_party/nixpkgs/pkgs/development/python-modules/phonemizer/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

57 lines
1.2 KiB
Nix

{
lib,
stdenv,
substituteAll,
buildPythonPackage,
fetchPypi,
joblib,
segments,
attrs,
dlinfo,
typing-extensions,
espeak-ng,
}:
buildPythonPackage rec {
pname = "phonemizer";
version = "3.2.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-Bo+F+FqKmtxjijeHrqyvcaU+R1eLEtdzwJdDNQDNiSs=";
};
postPatch = ''
sed -i '/pytest-runner/d' setup.py
'';
patches = [
(substituteAll {
src = ./backend-paths.patch;
libespeak = "${lib.getLib espeak-ng}/lib/libespeak-ng${stdenv.hostPlatform.extensions.sharedLibrary}";
# FIXME package festival
})
];
propagatedBuildInputs = [
joblib
segments
attrs
dlinfo
typing-extensions
];
# We tried to package festival, but were unable to get the backend running,
# so let's disable related tests.
doCheck = false;
meta = with lib; {
homepage = "https://github.com/bootphon/phonemizer";
changelog = "https://github.com/bootphon/phonemizer/blob/v${version}/CHANGELOG.md";
description = "Simple text to phones converter for multiple languages";
mainProgram = "phonemize";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ ];
};
}