Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sounddevice / default.nix
blob783469c27795df243521d79af5818c27c4965c0c
1 { lib
2 , stdenv
3 , buildPythonPackage
4 , fetchPypi
5 , isPy27
6 , cffi
7 , numpy
8 , portaudio
9 , substituteAll
12 buildPythonPackage rec {
13   pname = "sounddevice";
14   version = "0.4.6";
15   format = "setuptools";
16   disabled = isPy27;
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-Mja3jxXwQVvfAGpiDO8HPQwFIoUdZvSpYe1tjrFIL+k=";
21   };
23   propagatedBuildInputs = [ cffi numpy portaudio ];
25   # No tests included nor upstream available.
26   doCheck = false;
28   pythonImportsCheck = [ "sounddevice" ];
30   patches = [
31     (substituteAll {
32       src = ./fix-portaudio-library-path.patch;
33       portaudio = "${portaudio}/lib/libportaudio${stdenv.hostPlatform.extensions.sharedLibrary}";
34     })
35   ];
37   meta = {
38     description = "Play and Record Sound with Python";
39     homepage = "http://python-sounddevice.rtfd.org/";
40     license = with lib.licenses; [ mit ];
41     maintainers = with lib.maintainers; [ fridh ];
42   };