71 lines
1.3 KiB
Nix
71 lines
1.3 KiB
Nix
{ lib
|
|
, substituteAll
|
|
, buildPythonApplication
|
|
, fetchPypi
|
|
, joblib
|
|
, segments
|
|
, attrs
|
|
, espeak-ng
|
|
, pytestCheckHook
|
|
, pytest-cov
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "phonemizer";
|
|
version = "3.0.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1b4ea53b8da9a156361dff1d0c04ac1a8e65e6966d1cb9a8147c200960b32296";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i -e '/\'pytest-runner\'/d setup.py
|
|
'';
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./backend-paths.patch;
|
|
espeak = "${lib.getBin espeak-ng}/bin/espeak";
|
|
# override festival path should you try to integrate it
|
|
festival = "";
|
|
})
|
|
./remove-intertwined-festival-test.patch
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
joblib
|
|
segments
|
|
attrs
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
pytest-cov
|
|
];
|
|
|
|
# We tried to package festvial, but were unable to get the backend running,
|
|
# so let's disable related tests.
|
|
pytestFlagsArray = [
|
|
"--ignore=test/test_festival.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
"test_festival"
|
|
"test_relative"
|
|
"test_absolute"
|
|
"test_readme_festival_syll"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/bootphon/phonemizer";
|
|
description = "Simple text to phones converter for multiple languages";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|