python311Packages.torchaudio: 2.3.0 -> 2.3.1

Diff: https://github.com/pytorch/audio/compare/v2.3.0...v2.3.1

Changelog: https://github.com/pytorch/audio/releases/tag/v2.3.1
This commit is contained in:
Gaetan Lepage
2024-06-09 19:01:00 +02:00
parent 6016fa7d5f
commit 459bfbd3a9
@@ -72,14 +72,14 @@ let
in
buildPythonPackage rec {
pname = "torchaudio";
version = "2.3.0";
version = "2.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "pytorch";
repo = "audio";
rev = "refs/tags/v${version}";
hash = "sha256-8EPoZ/dfxrQjdtE0rZ+2pOaXxlyhRuweYnVuA9i0Fgc=";
hash = "sha256-PYaqRNKIhQ1DnFRZYyJJfBszVM2Bmu7A/lvvzJ6lL3g=";
};
patches = [ ./0001-setup.py-propagate-cmakeFlags.patch ];
@@ -133,7 +133,7 @@ buildPythonPackage rec {
torch.cxxdev
];
propagatedBuildInputs = [ torch ];
dependencies = [ torch ];
BUILD_SOX = 0;
BUILD_KALDI = 0;
@@ -149,16 +149,16 @@ buildPythonPackage rec {
doCheck = false; # requires sox backend
meta = with lib; {
meta = {
description = "PyTorch audio library";
homepage = "https://pytorch.org/";
changelog = "https://github.com/pytorch/audio/releases/tag/v${version}";
license = licenses.bsd2;
license = lib.licenses.bsd2;
platforms = [
"aarch64-darwin"
"aarch64-linux"
"x86_64-linux"
];
maintainers = with maintainers; [ junjihashimoto ];
maintainers = with lib.maintainers; [ junjihashimoto ];
};
}