3
0
Fork 0
forked from mirrors/nixpkgs

python310Packages.wyoming: init at 0.0.1

Bits and pieces originating at the rhasspy3 project.
This commit is contained in:
Martin Weinelt 2023-06-07 02:25:24 +02:00
parent dd5095dbff
commit 5f6be2960f
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 31 additions and 0 deletions

View 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 ];
};
}

View file

@ -13140,6 +13140,8 @@ self: super: with self; {
};
};
wyoming = callPackage ../development/python-modules/wyoming { };
x-wr-timezone = callPackage ../development/python-modules/x-wr-timezone { };
x11_hash = callPackage ../development/python-modules/x11_hash { };