python311Packages.wyoming: 1.2.0 -> 1.3.0
https://github.com/rhasspy/wyoming/releases/tag/1.3.0
This commit is contained in:
@@ -1,6 +1,12 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, fetchFromGitHub
|
||||
|
||||
# build-system
|
||||
, setuptools
|
||||
|
||||
# optional-dependencies
|
||||
, zeroconf
|
||||
|
||||
# tests
|
||||
, wyoming-faster-whisper
|
||||
@@ -10,12 +16,24 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "wyoming";
|
||||
version = "1.2.0";
|
||||
format = "setuptools";
|
||||
version = "1.3.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-mgNhc8PMRrwfvGZEcgIvQ/P2dysdDo2juvZccvb2C/g=";
|
||||
src = fetchFromGitHub {
|
||||
owner = "rhasspy";
|
||||
repo = "wyoming";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-UoXB+r72O9RaBvtXCEC1TAjjovYEYLqvv07GuQh0iCE=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
passthru.optional-dependencies = {
|
||||
zeroconf = [
|
||||
zeroconf
|
||||
];
|
||||
};
|
||||
|
||||
pythonImportsCheck = [
|
||||
@@ -34,8 +52,9 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
changelog = "https://github.com/rhasspy/wyoming/releases/tag/${version}";
|
||||
description = "Protocol for Rhasspy Voice Assistant";
|
||||
homepage = "https://pypi.org/project/wyoming/";
|
||||
homepage = "https://github.com/rhasspy/wyoming";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user