Merge pull request #161668 from azuwis/soundfile

This commit is contained in:
Sandro 2022-03-10 16:09:32 +01:00 committed by GitHub
commit 496414758a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,8 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pytest , fetchpatch
, pytestCheckHook
, numpy , numpy
, libsndfile , libsndfile
, cffi , cffi
@ -12,6 +13,8 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "soundfile"; pname = "soundfile";
version = "0.10.3.post1"; version = "0.10.3.post1";
# https://github.com/bastibe/python-soundfile/issues/157
disabled = isPyPy || stdenv.isi686;
src = fetchPypi { src = fetchPypi {
pname = "SoundFile"; pname = "SoundFile";
@ -19,22 +22,30 @@ buildPythonPackage rec {
sha256 = "0yqhrfz7xkvqrwdxdx2ydy4h467sk7z3gf984y1x2cq7cm1gy329"; sha256 = "0yqhrfz7xkvqrwdxdx2ydy4h467sk7z3gf984y1x2cq7cm1gy329";
}; };
checkInputs = [ pytest ]; patches = [
propagatedBuildInputs = [ numpy libsndfile cffi ]; # Fix build on macOS arm64, https://github.com/bastibe/python-soundfile/pull/332
propagatedNativeBuildInputs = [ cffi ]; (fetchpatch {
url = "https://github.com/bastibe/python-soundfile/commit/e554e9ce8bed96207d587e6aa661e4b08f1c6a79.patch";
sha256 = "sha256-vu/7s5q4I3yBnoNHmmFmcXvOLFcPwY9ri9ri6cKLDwU=";
})
];
meta = { postPatch = ''
description = "An audio library based on libsndfile, CFFI and NumPy"; substituteInPlace soundfile.py --replace "_find_library('sndfile')" "'${libsndfile.out}/lib/libsndfile${stdenv.hostPlatform.extensions.sharedLibrary}'"
license = lib.licenses.bsd3; '';
homepage = "https://github.com/bastibe/PySoundFile";
maintainers = with lib.maintainers; [ fridh ];
};
postPatch = '' checkInputs = [ pytestCheckHook ];
substituteInPlace soundfile.py --replace "_find_library('sndfile')" "'${libsndfile.out}/lib/libsndfile${stdenv.hostPlatform.extensions.sharedLibrary}'" propagatedBuildInputs = [ numpy libsndfile cffi ];
''; propagatedNativeBuildInputs = [ cffi ];
# https://github.com/bastibe/PySoundFile/issues/157 # Test fails on aarch64-darwin with `MemoryError`, 53 failed, 31 errors, see
disabled = isPyPy || stdenv.isi686; # https://github.com/bastibe/python-soundfile/issues/331
doCheck = stdenv.system != "aarch64-darwin";
meta = {
description = "An audio library based on libsndfile, CFFI and NumPy";
license = lib.licenses.bsd3;
homepage = "https://github.com/bastibe/python-soundfile";
maintainers = with lib.maintainers; [ fridh ];
};
} }