From aec7556c765e11b17cfd68bf5e610145df741e5e Mon Sep 17 00:00:00 2001 From: legendofmiracles Date: Tue, 19 Oct 2021 22:28:46 -0600 Subject: [PATCH] python3Packages.soundfile: fix cross-compilation --- pkgs/development/python-modules/soundfile/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/soundfile/default.nix b/pkgs/development/python-modules/soundfile/default.nix index dea0e345a999..9a1d614062b7 100644 --- a/pkgs/development/python-modules/soundfile/default.nix +++ b/pkgs/development/python-modules/soundfile/default.nix @@ -21,6 +21,7 @@ buildPythonPackage rec { checkInputs = [ pytest ]; propagatedBuildInputs = [ numpy libsndfile cffi ]; + propagatedNativeBuildInputs = [ cffi ]; meta = { description = "An audio library based on libsndfile, CFFI and NumPy";