12 buildPythonPackage rec {
17 src = fetchFromGitHub {
18 owner = "spatialaudio";
19 repo = "python-rtmixer";
21 sha256 = "1bvgzzxiypvvb3qacbcry6761x9sk3dnx7jga7pli63f69vakg4y";
22 fetchSubmodules = true;
25 buildInputs = [ portaudio ];
26 nativeBuildInputs = [ cython ];
28 propagatedBuildInputs = [
35 description = "Reliable low-latency audio playback and recording with Python, using PortAudio via the sounddevice module";
36 homepage = "https://python-rtmixer.readthedocs.io";
37 maintainers = with lib.maintainers; [ laikq ];
38 license = lib.licenses.mit;