forked from mirrors/nixpkgs
Merge pull request #236378 from mweinelt/wyoming
python310Packages.wyoming: init at 0.0.1
This commit is contained in:
commit
c0dc1bbc25
29
pkgs/development/python-modules/wyoming/default.nix
Normal file
29
pkgs/development/python-modules/wyoming/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "wyoming";
|
||||||
|
version = "0.0.1";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
hash = "sha256-EIUbKL8DNFNNGmLRcu12mlw4H+gAHmCUw09eLG0s8+M=";
|
||||||
|
};
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"wyoming"
|
||||||
|
];
|
||||||
|
|
||||||
|
# no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Protocol for Rhasspy Voice Assistant";
|
||||||
|
homepage = "https://pypi.org/project/wyoming/";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ hexa ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4492,7 +4492,8 @@
|
||||||
"wsdot" = ps: with ps; [
|
"wsdot" = ps: with ps; [
|
||||||
];
|
];
|
||||||
"wyoming" = ps: with ps; [
|
"wyoming" = ps: with ps; [
|
||||||
]; # missing inputs: wyoming
|
wyoming
|
||||||
|
];
|
||||||
"x10" = ps: with ps; [
|
"x10" = ps: with ps; [
|
||||||
];
|
];
|
||||||
"xbox" = ps: with ps; [
|
"xbox" = ps: with ps; [
|
||||||
|
@ -5417,6 +5418,7 @@
|
||||||
"worldclock"
|
"worldclock"
|
||||||
"ws66i"
|
"ws66i"
|
||||||
"wsdot"
|
"wsdot"
|
||||||
|
"wyoming"
|
||||||
"xbox"
|
"xbox"
|
||||||
"xiaomi"
|
"xiaomi"
|
||||||
"xiaomi_aqara"
|
"xiaomi_aqara"
|
||||||
|
|
|
@ -13140,6 +13140,8 @@ self: super: with self; {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
wyoming = callPackage ../development/python-modules/wyoming { };
|
||||||
|
|
||||||
x-wr-timezone = callPackage ../development/python-modules/x-wr-timezone { };
|
x-wr-timezone = callPackage ../development/python-modules/x-wr-timezone { };
|
||||||
|
|
||||||
x11_hash = callPackage ../development/python-modules/x11_hash { };
|
x11_hash = callPackage ../development/python-modules/x11_hash { };
|
||||||
|
|
Loading…
Reference in a new issue