nixos-configs/nixosModules/wyoming-plus/pkgs/default.nix
matt1432 c75cb0759d
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(wyoming): move to tflite dep instead of tensorflow
2024-12-15 17:14:49 -05:00

19 lines
489 B
Nix

{pkgs, ...}: let
python3Packages = pkgs.python311Packages;
in rec {
speexdsp-ns = pkgs.callPackage ./speexdsp-ns.nix {
inherit python3Packages;
};
tflite-runtime = pkgs.callPackage ./tflite-runtime.nix {
inherit python3Packages;
};
openwakeword = pkgs.callPackage ./openwakeword.nix {
inherit python3Packages speexdsp-ns tflite-runtime;
};
wyoming-openwakeword = pkgs.callPackage ./wyoming-openwakeword.nix {
inherit openwakeword python3Packages;
};
}