about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/rtmixer/default.nix
blob: 83d619840377311259d311641a293ce69eacfd1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ 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}";
    sha256 = "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;
  };
}