Files
nixpkgs/pkgs/development/python-modules/speechbrain/default.nix

56 lines
1002 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# dependencies
huggingface-hub,
hyperpyyaml,
joblib,
numpy,
packaging,
sentencepiece,
scipy,
torch,
torchaudio,
tqdm,
}:
buildPythonPackage rec {
pname = "speechbrain";
version = "1.0.3";
pyproject = true;
src = fetchFromGitHub {
owner = "speechbrain";
repo = "speechbrain";
tag = "v${version}";
hash = "sha256-H45kTOIO6frbrRu+TP+udn1z60ZEcrShNB9iTCLInQs=";
};
dependencies = [
huggingface-hub
hyperpyyaml
joblib
numpy
packaging
sentencepiece
scipy
torch
torchaudio
tqdm
];
doCheck = false; # requires sox backend
pythonImportsCheck = [ "speechbrain" ];
meta = {
description = "PyTorch-based Speech Toolkit";
homepage = "https://speechbrain.github.io";
changelog = "https://github.com/speechbrain/speechbrain/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}