40 lines
932 B
Nix
40 lines
932 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, pytest
|
||
|
, numpy
|
||
|
, libsndfile
|
||
|
, cffi
|
||
|
, isPyPy
|
||
|
, stdenv
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "soundfile";
|
||
|
version = "0.10.3.post1";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
pname = "SoundFile";
|
||
|
inherit version;
|
||
|
sha256 = "0yqhrfz7xkvqrwdxdx2ydy4h467sk7z3gf984y1x2cq7cm1gy329";
|
||
|
};
|
||
|
|
||
|
checkInputs = [ pytest ];
|
||
|
propagatedBuildInputs = [ numpy libsndfile cffi ];
|
||
|
|
||
|
meta = {
|
||
|
description = "An audio library based on libsndfile, CFFI and NumPy";
|
||
|
license = lib.licenses.bsd3;
|
||
|
homepage = "https://github.com/bastibe/PySoundFile";
|
||
|
maintainers = with lib.maintainers; [ fridh ];
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace soundfile.py --replace "_find_library('sndfile')" "'${libsndfile.out}/lib/libsndfile${stdenv.hostPlatform.extensions.sharedLibrary}'"
|
||
|
'';
|
||
|
|
||
|
# https://github.com/bastibe/PySoundFile/issues/157
|
||
|
disabled = isPyPy || stdenv.isi686;
|
||
|
|
||
|
}
|