My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/rtmixer/default.nix

40 lines
837 B

{ fetchFromGitHub
, buildPythonPackage
, isPy27
, cython
, portaudio
, cffi
, pa-ringbuffer
, sounddevice
, lib
}:
buildPythonPackage rec {
pname = "rtmixer";
version = "0.1.1";
disabled = isPy27;
src = fetchFromGitHub {
owner = "spatialaudio";
repo = "python-rtmixer";
rev = version;
sha256 = "1bvgzzxiypvvb3qacbcry6761x9sk3dnx7jga7pli63f69vakg4y";
fetchSubmodules = true;
};
buildInputs = [ portaudio ];
nativeBuildInputs = [ cython ];
propagatedBuildInputs = [
cffi
pa-ringbuffer
sounddevice
];
meta = {
description = "Reliable low-latency audio playback and recording with Python, using PortAudio via the sounddevice module";
homepage = "https://python-rtmixer.readthedocs.io";
maintainers = with lib.maintainers; [ laikq ];
license = lib.licenses.mit;
};
}