nixos-configs/nixosModules/wyoming-plus/pkgs/speexdsp-ns.nix
matt1432 de8b7fd2bb
All checks were successful
Discord / discord commits (push) Has been skipped
feat(hass): use fork of wyoming-oww
2024-09-12 18:21:31 -04:00

21 lines
435 B
Nix

{
fetchFromGitHub,
python3Packages,
speexdsp,
swig,
...
}:
python3Packages.buildPythonApplication {
pname = "speexdsp-ns";
version = "0.1.2";
src = fetchFromGitHub {
owner = "TeaPoly";
repo = "speexdsp-ns-python";
rev = "8af784a230e23f4eeaa4a58111774ad0864b1f0b";
hash = "sha256-9IGhHZBlDYfGygB+fAdEDp7qeIEOWBsiLZAUFTVBxG0=";
};
nativeBuildInputs = [swig];
propagatedBuildInputs = [speexdsp];
}