python pysoundfile: disable on 32 bit systems

due to a bug
This commit is contained in:
Frederik Rietdijk 2015-12-01 17:21:16 +01:00
parent 6da921e9dd
commit 6bda7509e5

View File

@ -13173,7 +13173,8 @@ in modules // {
substituteInPlace soundfile.py --replace "'sndfile'" "'${pkgs.libsndfile}/lib/libsndfile.so'" substituteInPlace soundfile.py --replace "'sndfile'" "'${pkgs.libsndfile}/lib/libsndfile.so'"
''; '';
disabled = isPyPy; # https://github.com/bastibe/PySoundFile/issues/157
disabled = isPyPy || stdenv.isi686;
}; };
python3pika = buildPythonPackage { python3pika = buildPythonPackage {