python3Packages.speak2mary: init at 1.5.0 (#431808)

This commit is contained in:
Martin Weinelt
2025-08-07 20:51:27 +02:00
committed by GitHub
3 changed files with 36 additions and 1 deletions
@@ -0,0 +1,31 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "speak2mary";
version = "1.5.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-5W2E/leT/IiXFVXD+LSPE99zGlz+yKm5XCv830rt8O0=";
};
build-system = [ setuptools ];
# Tests require a running MaryTTS server
doCheck = false;
pythonImportsCheck = [ "speak2mary" ];
meta = {
description = "Python wrapper for a running MaryTTS server";
homepage = "https://github.com/Poeschl/speak2mary";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
@@ -3406,7 +3406,8 @@
];
"marytts" =
ps: with ps; [
]; # missing inputs: speak2mary
speak2mary
];
"mastodon" =
ps: with ps; [
mastodon-py
@@ -7290,6 +7291,7 @@
"mailgun"
"manual"
"manual_mqtt"
"marytts"
"mastodon"
"matrix"
"matter"
+2
View File
@@ -16865,6 +16865,8 @@ self: super: with self; {
spdx-tools = callPackage ../development/python-modules/spdx-tools { };
speak2mary = callPackage ../development/python-modules/speak2mary { };
speaklater = callPackage ../development/python-modules/speaklater { };
speaklater3 = callPackage ../development/python-modules/speaklater3 { };