Merge pull request #11388 from FRidh/pysoundfile

python pysoundfile: disable on 32 bit systems
This commit is contained in:
Domen Kožar 2015-12-02 08:27:04 +01:00
commit fbd517f808

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 {