mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
python pysoundfile: disable on 32 bit systems
due to a bug
This commit is contained in:
parent
6da921e9dd
commit
6bda7509e5
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user