python3Packages.torch-audiomentations: init at 0.11.0

This commit is contained in:
matthewcroughan
2024-02-20 14:18:33 +00:00
committed by Emery Hemingway
parent eb98127cc0
commit 3c5aed3433
2 changed files with 48 additions and 0 deletions
@@ -0,0 +1,46 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, wheel
, julius
, librosa
, torch
, torchaudio
, torch-pitch-shift
}:
buildPythonPackage rec {
pname = "torch-audiomentations";
version = "0.11.0";
pyproject = true;
src = fetchFromGitHub {
owner = "asteroid-team";
repo = "torch-audiomentations";
rev = "v${version}";
hash = "sha256-r3J8yo3+jjuD4qqpC5Ax3TFPL9pGUNc0EksTkCTJKbU=";
};
propagatedBuildInputs = [
julius
librosa
torch
torchaudio
torch-pitch-shift
];
nativeBuildInputs = [
setuptools
wheel
];
pythonImportsCheck = [ "torch_audiomentations" ];
meta = with lib; {
description = "Fast audio data augmentation in PyTorch. Inspired by audiomentations. Useful for deep learning";
homepage = "https://github.com/asteroid-team/torch-audiomentations";
license = licenses.mit;
maintainers = with maintainers; [ matthewcroughan ];
};
}
+2
View File
@@ -14650,6 +14650,8 @@ self: super: with self; {
inherit (pkgs.darwin) libobjc;
};
torch-audiomentations = callPackage ../development/python-modules/torch-audiomentations { };
torch-pitch-shift = callPackage ../development/python-modules/torch-pitch-shift { };
torch-bin = callPackage ../development/python-modules/torch/bin.nix {