depot/third_party/nixpkgs/pkgs/development/python-modules/rtmixer/default.nix
Default email a4fd2de975 Project import generated by Copybara.
GitOrigin-RevId: 34ad166a830d3ac1541dcce571c52231f2f0865a
2020-11-02 21:18:15 -05:00

40 lines
837 B
Nix

{ 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;
};
}