lol

python3Packages.wyoming: 1.6.1 -> 1.7.1; wyoming-piper: 1.5.4 -> 1.6.0 (#419745)

authored by

Martin Weinelt and committed by
GitHub
2a3d7501 d51c8e50

+20 -7
+7
nixos/modules/services/home-automation/wyoming/piper.nix
··· 96 96 apply = toString; 97 97 }; 98 98 99 + streaming = mkEnableOption "audio streaming on sentence boundaries" // { 100 + default = true; 101 + }; 102 + 99 103 extraArgs = mkOption { 100 104 type = listOf str; 101 105 default = [ ]; ··· 157 161 options.noiseScale 158 162 "--noise-w" 159 163 options.noiseWidth 164 + ] 165 + ++ lib.optionals options.streaming [ 166 + "--streaming" 160 167 ] 161 168 ++ options.extraArgs 162 169 );
+8 -3
pkgs/by-name/wy/wyoming-openwakeword/package.nix
··· 1 1 { 2 2 lib, 3 - python3Packages, 3 + python312Packages, 4 4 fetchFromGitHub, 5 5 }: 6 6 7 + let 8 + # tensorflow-bin unsupported on Python 3.13 9 + python3Packages = python312Packages; 10 + in 11 + 7 12 python3Packages.buildPythonApplication rec { 8 13 pname = "wyoming-openwakeword"; 9 14 version = "1.10.0"; ··· 16 21 hash = "sha256-5suYJ+Z6ofVAysoCdHi5b5K0JTYaqeFZ32Cm76wC5LU="; 17 22 }; 18 23 19 - nativeBuildInputs = with python3Packages; [ 24 + build-systems = with python3Packages; [ 20 25 setuptools 21 26 ]; 22 27 ··· 28 33 "tflite-runtime-nightly" 29 34 ]; 30 35 31 - propagatedBuildInputs = with python3Packages; [ 36 + dependencies = with python3Packages; [ 32 37 tensorflow-bin 33 38 wyoming 34 39 ];
+3 -2
pkgs/by-name/wy/wyoming-piper/package.nix
··· 6 6 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "wyoming-piper"; 9 - version = "1.5.3"; 9 + version = "1.6.0"; 10 10 pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "rhasspy"; 14 14 repo = "wyoming-piper"; 15 15 tag = "v${version}"; 16 - hash = "sha256-yPGiOF9RXhW7zjvFMi1UCXLyrWiqhJTvvIAtkYb9kBg="; 16 + hash = "sha256-pVpCnrf/BnAeyfyf82i9Ga/2WQUs1qGceL9uJ99WddY="; 17 17 }; 18 18 19 19 build-system = with python3Packages; [ ··· 25 25 ]; 26 26 27 27 dependencies = with python3Packages; [ 28 + regex 28 29 wyoming 29 30 ]; 30 31
+2 -2
pkgs/development/python-modules/wyoming/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "wyoming"; 20 - version = "1.6.1"; 20 + version = "1.7.1"; 21 21 pyproject = true; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "rhasspy"; 25 25 repo = "wyoming"; 26 26 tag = version; 27 - hash = "sha256-Q7e4YSvVHpjyJQwsXTfyzMA1DKi71xiVDKWGWTh1l6w="; 27 + hash = "sha256-jP2RLKjm79tb4lPbTp1zcDnRV0phn7I2qjxYpC6hqTM="; 28 28 }; 29 29 30 30 build-system = [ setuptools ];