python313Packages.pycsspeechtts: init at 1.0.8 (#426736)
This commit is contained in:
37
pkgs/development/python-modules/pycsspeechtts/default.nix
Normal file
37
pkgs/development/python-modules/pycsspeechtts/default.nix
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
pythonOlder,
|
||||
hatchling,
|
||||
requests,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pycsspeechtts";
|
||||
version = "1.0.8";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-kgof0T22VRU96pKAWuEBo56F6t7o2X/xRS/L5B7UYDY=";
|
||||
};
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
dependencies = [ requests ];
|
||||
|
||||
# Tests require API key and network access
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "pycsspeechtts" ];
|
||||
|
||||
meta = {
|
||||
description = "Python library for Microsoft Cognitive Services Text-to-Speech";
|
||||
homepage = "https://github.com/jeroenterheerdt/pycsspeechtts";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.jamiemagee ];
|
||||
};
|
||||
}
|
||||
@@ -3567,7 +3567,8 @@
|
||||
]; # missing inputs: microBeesPy
|
||||
"microsoft" =
|
||||
ps: with ps; [
|
||||
]; # missing inputs: pycsspeechtts
|
||||
pycsspeechtts
|
||||
];
|
||||
"microsoft_face" =
|
||||
ps: with ps; [
|
||||
pyturbojpeg
|
||||
@@ -7294,6 +7295,7 @@
|
||||
"meteoclimatic"
|
||||
"metoffice"
|
||||
"mfi"
|
||||
"microsoft"
|
||||
"microsoft_face"
|
||||
"microsoft_face_detect"
|
||||
"microsoft_face_identify"
|
||||
|
||||
@@ -12518,6 +12518,8 @@ self: super: with self; {
|
||||
|
||||
pycsdr = callPackage ../development/python-modules/pycsdr { };
|
||||
|
||||
pycsspeechtts = callPackage ../development/python-modules/pycsspeechtts { };
|
||||
|
||||
pyct = callPackage ../development/python-modules/pyct { };
|
||||
|
||||
pyctr = callPackage ../development/python-modules/pyctr { };
|
||||
|
||||
Reference in New Issue
Block a user