nixpkgs/pkgs/development/python-modules/rtmixer/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

42 lines
876 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}";
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;
};
}