567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
45 lines
928 B
Nix
45 lines
928 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# dependencies
|
|
einops,
|
|
numpy,
|
|
torch,
|
|
torchaudio,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "encodec";
|
|
version = "0.1.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "facebookresearch";
|
|
repo = "encodec";
|
|
rev = "v${version}";
|
|
hash = "sha256-+iJZkX1HoyuNFu9VRxMO6aAzNQybkH9lrQJ5Ao9+/CY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
einops
|
|
numpy
|
|
torch
|
|
torchaudio
|
|
];
|
|
|
|
pythonImportsCheck = [ "encodec" ];
|
|
|
|
# requires model data from the internet
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "State-of-the-art deep learning based audio codec supporting both mono 24 kHz audio and stereo 48 kHz audio";
|
|
homepage = "https://github.com/facebookresearch/encodec";
|
|
changelog = "https://github.com/facebookresearch/encodec/blob/${src.rev}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
teams = [ lib.teams.tts ];
|
|
};
|
|
}
|