From 6bda7509e5cf8a84920d5d71bf971b1283725d8b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 1 Dec 2015 17:21:16 +0100 Subject: [PATCH] python pysoundfile: disable on 32 bit systems due to a bug --- pkgs/top-level/python-packages.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 55e2da3a251a..b105769cdcf4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13173,7 +13173,8 @@ in modules // { 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 {