python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / sounddevice / default.nix
blobf90e2f7a30640333cf4fdcecd6301bd893a2eadc
2   lib,
3   stdenv,
4   buildPythonPackage,
5   fetchPypi,
6   isPy27,
7   setuptools,
8   cffi,
9   numpy,
10   portaudio,
11   substituteAll,
14 buildPythonPackage rec {
15   pname = "sounddevice";
16   version = "0.5.1";
17   pyproject = true;
18   disabled = isPy27;
20   src = fetchPypi {
21     inherit pname version;
22     hash = "sha256-CcqZHa7ajOS+mskeFamoHI+B76a2laNIyRceoMFssEE=";
23   };
25   build-system = [ setuptools ];
27   dependencies = [
28     cffi
29     numpy
30     portaudio
31   ];
33   nativeBuildInputs = [ cffi ];
35   # No tests included nor upstream available.
36   doCheck = false;
38   pythonImportsCheck = [ "sounddevice" ];
40   patches = [
41     (substituteAll {
42       src = ./fix-portaudio-library-path.patch;
43       portaudio = "${portaudio}/lib/libportaudio${stdenv.hostPlatform.extensions.sharedLibrary}";
44     })
45   ];
47   meta = {
48     description = "Play and Record Sound with Python";
49     homepage = "http://python-sounddevice.rtfd.org/";
50     license = with lib.licenses; [ mit ];
51   };