ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pyaudio / default.nix
blob82f2b685d2686bf491adaa90388efbcbde8ac697
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPyPy
5 , pkgs
6 }:
8 buildPythonPackage rec {
9   pname = "PyAudio";
10   version = "0.2.12";
11   disabled = isPyPy;
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "sha256-Vd3123K8U3u6X128o6ufAiLuW4Qr2oOXjqsLe49g+54=";
16   };
18   buildInputs = [ pkgs.portaudio ];
20   meta = with lib; {
21     description = "Python bindings for PortAudio";
22     homepage = "https://people.csail.mit.edu/hubert/pyaudio/";
23     license = licenses.mit;
24   };