f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
42 lines
885 B
Nix
42 lines
885 B
Nix
{
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
isPy27,
|
|
cython,
|
|
portaudio,
|
|
cffi,
|
|
pa-ringbuffer,
|
|
sounddevice,
|
|
lib,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rtmixer";
|
|
version = "0.1.4";
|
|
format = "setuptools";
|
|
disabled = isPy27;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spatialaudio";
|
|
repo = "python-rtmixer";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-S8aVfxoG0o5GarDX5ZIDQ3GKOT32NtttQJ449FI9Fy0=";
|
|
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;
|
|
};
|
|
}
|