Unverified Commit a0c28de3 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

phonemizer: fix build (#354946)

parents 802cb21f fc94ad90
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -10,22 +10,22 @@
  dlinfo,
  typing-extensions,
  espeak-ng,
  setuptools,
  pytest,
}:

buildPythonPackage rec {
  pname = "phonemizer";
  version = "3.3.0";
  format = "setuptools";
  pyproject = true;

  build-system = [ setuptools ];

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-Xgw4Ei7/4LMxok5nSv8laHTs4WnXCpzxEgM3tW+OPQw=";
  };

  postPatch = ''
    sed -i '/pytest-runner/d' setup.py
  '';

  patches = [
    (substituteAll {
      src = ./backend-paths.patch;
@@ -46,12 +46,12 @@ buildPythonPackage rec {
  # so let's disable related tests.
  doCheck = false;

  meta = with lib; {
  meta = {
    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 = [ ];
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ bot-wxt1221 ];
  };
}