wyoming-openwakeword: 1.5.1 -> 1.8.1
https://github.com/rhasspy/wyoming-openwakeword/blob/v1.8.1/CHANGELOG.md
This commit is contained in:
parent
1e333439f1
commit
48e6ac6d4f
1 changed files with 12 additions and 22 deletions
|
@ -1,61 +1,51 @@
|
||||||
{ lib
|
{ lib
|
||||||
, python3
|
|
||||||
, python3Packages
|
, python3Packages
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
}:
|
}:
|
||||||
|
|
||||||
python3.pkgs.buildPythonApplication {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "wyoming-openwakeword";
|
pname = "wyoming-openwakeword";
|
||||||
version = "1.5.1";
|
version = "1.8.1";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "rhasspy";
|
owner = "rhasspy";
|
||||||
repo = "rhasspy3";
|
repo = "wyoming-openwakeword";
|
||||||
rev = "e16d7d374a64f671db48142c7b635b327660ebcf";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-SbWsRmR1hfuU3yJbuu+r7M43ugHeNwLgu5S8MqkbCQA=";
|
hash = "sha256-N/EjdNQLsYLpJ4kOxY/z+/dMMmF1PPAIEEzSHfnZWaM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
# import tflite entrypoint from tensorflow
|
# import tflite entrypoint from tensorflow
|
||||||
url = "https://github.com/rhasspy/rhasspy3/commit/23b1bc9cf1e9aa78453feb11e27d5dafe26de068.patch";
|
url = "https://github.com/rhasspy/wyoming-openwakeword/commit/8f4ba2750d8c545e77549a7230cdee1301dac09a.patch";
|
||||||
hash = "sha256-fjLJ+VI4c8ABBWx1IjZ6nS8MGqdry4rgcThKiaAvz+Q=";
|
hash = "sha256-WPvywpGv0sYYVGc7he4bt7APIsa3ziKaWqpFlx3v+V8=";
|
||||||
})
|
})
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
# add commandline entrypoint
|
# add commandline entrypoint
|
||||||
url = "https://github.com/rhasspy/rhasspy3/commit/7662b82cd85e16817a3c6f4153e855bf57436ac3.patch";
|
url = "https://github.com/rhasspy/wyoming-openwakeword/commit/f40e5635543b2315217538dd89a9fe40fe817cfe.patch";
|
||||||
hash = "sha256-41CLkVDSAJJpZ5irwIf/Z4wHoCuKDrqFBAjKCx7ta50=";
|
hash = "sha256-HNlGqt7bMzwyvhx5Hw7mkTHeQmBpgDCU3pUbZzss1bY=";
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
cd programs/wake/openwakeword-lite/server
|
|
||||||
'';
|
|
||||||
|
|
||||||
nativeBuildInputs = with python3Packages; [
|
nativeBuildInputs = with python3Packages; [
|
||||||
setuptools
|
setuptools
|
||||||
wheel
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
tensorflow-bin
|
tensorflow
|
||||||
webrtc-noise-gain
|
|
||||||
wyoming
|
wyoming
|
||||||
];
|
];
|
||||||
|
|
||||||
passthru.optional-dependencies.webrtc = with python3Packages; [
|
|
||||||
webrtc-noise-gain
|
|
||||||
];
|
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [
|
||||||
"wyoming_openwakeword"
|
"wyoming_openwakeword"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
changelog = "https://github.com/rhasspy/wyoming-openwakeword/blob/v${version}/CHANGELOG.md";
|
||||||
description = "An open source voice assistant toolkit for many human languages";
|
description = "An open source voice assistant toolkit for many human languages";
|
||||||
homepage = "https://github.com/rhasspy/rhasspy3/commit/fe44635132079db74d0c76c6b3553b842aa1e318";
|
homepage = "https://github.com/rhasspy/wyoming-openwakeword";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ hexa ];
|
maintainers = with maintainers; [ hexa ];
|
||||||
mainProgram = "wyoming-openwakeword";
|
mainProgram = "wyoming-openwakeword";
|
||||||
|
|
Loading…
Reference in a new issue