5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
64 lines
1.5 KiB
Nix
64 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
ffmpeg-full,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
substituteAll,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pydub";
|
|
version = "0.25.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jiaaro";
|
|
repo = "pydub";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-FTEMT47wPXK5i4ZGjTVAhI/NjJio3F2dbBZzYzClU3c=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix test assertions, https://github.com/jiaaro/pydub/pull/769
|
|
(fetchpatch {
|
|
name = "fix-assertions.patch";
|
|
url = "https://github.com/jiaaro/pydub/commit/66c1bf7813ae8621a71484fdcdf609734c0d8efd.patch";
|
|
hash = "sha256-3OIzvTgGK3r4/s5y7izHvouB4uJEmjO6cgKvegtTf7A=";
|
|
})
|
|
# Fix paths to ffmpeg, ffplay and ffprobe
|
|
(substituteAll {
|
|
src = ./ffmpeg-fix-path.patch;
|
|
ffmpeg = lib.getExe ffmpeg-full;
|
|
ffplay = lib.getExe' ffmpeg-full "ffplay";
|
|
ffprobe = lib.getExe' ffmpeg-full "ffprobe";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"pydub"
|
|
"pydub.audio_segment"
|
|
"pydub.playback"
|
|
];
|
|
|
|
pytestFlagsArray = [ "test/test.py" ];
|
|
|
|
meta = with lib; {
|
|
description = "Manipulate audio with a simple and easy high level interface";
|
|
homepage = "http://pydub.com";
|
|
changelog = "https://github.com/jiaaro/pydub/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|