Loading pkgs/development/python-modules/pycsspeechtts/default.nix 0 → 100644 +37 −0 Original line number Diff line number Diff line { 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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -12516,6 +12516,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 { }; Loading Loading
pkgs/development/python-modules/pycsspeechtts/default.nix 0 → 100644 +37 −0 Original line number Diff line number Diff line { 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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -12516,6 +12516,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 { }; Loading