2018-09-10 17:05:40 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchFromGitHub, scipy, ffmpeg-full }:
|
2017-09-14 07:40:37 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pydub";
|
2020-07-07 01:51:55 +01:00
|
|
|
version = "0.24.1";
|
2018-09-10 17:05:40 +01:00
|
|
|
# pypi version doesn't include required data files for tests
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jiaaro";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-07-07 01:51:55 +01:00
|
|
|
sha256 = "1pv4n54kkjpbjlvwh9b6a7zyq1ylg0fjmd2q4ws9nc2a6mrcivhc";
|
2017-09-14 07:40:37 +01:00
|
|
|
};
|
|
|
|
|
2018-09-10 21:36:14 +01:00
|
|
|
|
|
|
|
# disable a test that fails on aarch64 due to rounding errors
|
|
|
|
postPatch = stdenv.lib.optionalString stdenv.isAarch64 ''
|
|
|
|
substituteInPlace test/test.py \
|
|
|
|
--replace "test_overlay_with_gain_change" "notest_overlay_with_gain_change"
|
|
|
|
'';
|
|
|
|
|
2017-09-14 07:40:37 +01:00
|
|
|
checkInputs = [ scipy ffmpeg-full ];
|
|
|
|
|
2018-09-10 17:05:40 +01:00
|
|
|
checkPhase = ''
|
|
|
|
python test/test.py
|
|
|
|
'';
|
|
|
|
|
2017-09-14 07:40:37 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Manipulate audio with a simple and easy high level interface.";
|
|
|
|
homepage = "http://pydub.com/";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|