python3Packages.speechbrain: fix build with torchaudio 2.9

This commit is contained in:
Robert Schütz
2025-10-31 15:38:34 -07:00
parent ea77ad3458
commit 9f26115254
@@ -2,6 +2,10 @@
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
# build-system
setuptools,
# dependencies
huggingface-hub,
@@ -28,6 +32,18 @@ buildPythonPackage rec {
hash = "sha256-H45kTOIO6frbrRu+TP+udn1z60ZEcrShNB9iTCLInQs=";
};
patches = [
# https://github.com/speechbrain/speechbrain/pull/2988
(fetchpatch {
name = "torchaudio-2.9-compat.patch";
url = "https://github.com/speechbrain/speechbrain/commit/927530fa95e238fbc396000618e839a4a986dd7d.patch";
excludes = [ "pyproject.toml" ];
hash = "sha256-TJxBQLggX2ZHppUJwMcg9+A9r0r+D20XUfivBFW7y/U=";
})
];
build-system = [ setuptools ];
dependencies = [
huggingface-hub
hyperpyyaml