14 buildPythonPackage rec {
20 src = fetchFromGitHub {
21 owner = "spatialaudio";
22 repo = "python-rtmixer";
23 rev = "refs/tags/${version}";
24 hash = "sha256-K5w6XWnDdA5HrzDOMhqinlxrg/09AF6c5CWZEsfVHb4=";
25 fetchSubmodules = true;
28 build-system = [ setuptools ];
30 buildInputs = [ portaudio ];
44 description = "Reliable low-latency audio playback and recording with Python, using PortAudio via the sounddevice module";
45 homepage = "https://python-rtmixer.readthedocs.io";
46 maintainers = with lib.maintainers; [ laikq ];
47 license = lib.licenses.mit;