17 buildPythonPackage rec {
18 pname = "speechbrain";
20 format = "setuptools";
22 disabled = pythonOlder "3.7";
24 src = fetchFromGitHub {
25 owner = "speechbrain";
27 rev = "refs/tags/v${version}";
28 hash = "sha256-s23RHxqr+ZCWPYNchFpyYa01mY+Bum3thgNbJP8rAmA=";
31 propagatedBuildInputs = [
44 doCheck = false; # requires sox backend
46 pythonImportsCheck = [ "speechbrain" ];
49 description = "A PyTorch-based Speech Toolkit";
50 homepage = "https://speechbrain.github.io";
51 changelog = "https://github.com/speechbrain/speechbrain/releases/tag/v${version}";
52 license = licenses.asl20;
53 maintainers = with maintainers; [ GaetanLepage ];