python312Packages.torchaudio: 2.4.0 -> 2.4.1

Diff: https://github.com/pytorch/audio/compare/refs/tags/v2.4.0...v2.4.1

Changelog: https://github.com/pytorch/audio/releases/tag/v2.4.1
This commit is contained in:
Gaetan Lepage 2024-09-05 00:15:25 +02:00 committed by Gaétan Lepage
parent 34b8dc4efb
commit 04ca50fb7f

View File

@ -1,12 +1,16 @@
{
lib,
symlinkJoin,
buildPythonPackage,
fetchFromGitHub,
# nativeBuildInputs
cmake,
symlinkJoin,
ffmpeg-full,
pkg-config,
ninja,
# buildInputs
ffmpeg-full,
pybind11,
sox,
torch,
@ -72,14 +76,14 @@ let
in
buildPythonPackage rec {
pname = "torchaudio";
version = "2.4.0";
version = "2.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "pytorch";
repo = "audio";
rev = "refs/tags/v${version}";
hash = "sha256-ltBPoFDA7GS9XRHyWeTRn1YTVqdaE/38KnkG4fp7Th8=";
hash = "sha256-zQqIIzOW9vboP5XQSOUWB0edz6XJvz06RqbcYPO9K24=";
};
patches = [ ./0001-setup.py-propagate-cmakeFlags.patch ];