19 buildPythonPackage rec {
20 pname = "speechbrain";
24 src = fetchFromGitHub {
25 owner = "speechbrain";
27 rev = "refs/tags/v${version}";
28 hash = "sha256-Un7RPxMq1sD7uD3jcw3Bjp+Oo8ld+XC5g2I89gF6jxs=";
44 doCheck = false; # requires sox backend
46 pythonImportsCheck = [ "speechbrain" ];
49 description = "PyTorch-based Speech Toolkit";
50 homepage = "https://speechbrain.github.io";
51 changelog = "https://github.com/speechbrain/speechbrain/releases/tag/v${version}";
52 license = lib.licenses.asl20;
53 maintainers = with lib.maintainers; [ GaetanLepage ];