From d7ffd4bc9ff4383e5f788062f60523934d4a6e8a Mon Sep 17 00:00:00 2001 From: Devon Stewart Date: Tue, 23 Apr 2024 13:36:22 -0700 Subject: [PATCH 1/2] Add pulseaudio dep for pyaudio --- internal/nix/python_map.json | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/nix/python_map.json b/internal/nix/python_map.json index aa08c94a..93a313fe 100644 --- a/internal/nix/python_map.json +++ b/internal/nix/python_map.json @@ -415,6 +415,7 @@ "pyarrow":{"deps":["pkgs.arrow-cpp","pkgs.pkg-config"]}, "pyatspi":{"deps":["pkgs.at-spi2-core","pkgs.pkg-config"]}, "pyautogui":{"deps":["pkgs.scrot","pkgs.xvfb-run"]}, + "pyaudio":{"deps":["pkgs.pulseaudio"]}, "pybigwig":{"deps":["pkgs.zlib"]}, "pybind11":{"deps":["pkgs.catch","pkgs.eigen","pkgs.libxcrypt"]}, "pybluez":{"deps":["pkgs.bluez"]}, From fd4b0e32857029f30982d731a6749b0caf9014c6 Mon Sep 17 00:00:00 2001 From: Devon Stewart Date: Tue, 23 Apr 2024 13:57:24 -0700 Subject: [PATCH 2/2] Actually use the correct package. _portaudio_, not pulseaudio --- internal/nix/python_map.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/nix/python_map.json b/internal/nix/python_map.json index 93a313fe..acb56d9e 100644 --- a/internal/nix/python_map.json +++ b/internal/nix/python_map.json @@ -415,7 +415,7 @@ "pyarrow":{"deps":["pkgs.arrow-cpp","pkgs.pkg-config"]}, "pyatspi":{"deps":["pkgs.at-spi2-core","pkgs.pkg-config"]}, "pyautogui":{"deps":["pkgs.scrot","pkgs.xvfb-run"]}, - "pyaudio":{"deps":["pkgs.pulseaudio"]}, + "pyaudio":{"deps":["pkgs.portaudio"]}, "pybigwig":{"deps":["pkgs.zlib"]}, "pybind11":{"deps":["pkgs.catch","pkgs.eigen","pkgs.libxcrypt"]}, "pybluez":{"deps":["pkgs.bluez"]},