Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 506 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, isPyPy 5, pkgs 6}: 7 8buildPythonPackage rec { 9 pname = "python-pyaudio"; 10 version = "0.2.9"; 11 disabled = isPyPy; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "bfd694272b3d1efc51726d0c27650b3c3ba1345f7f8fdada7e86c9751ce0f2a1"; 16 }; 17 18 buildInputs = [ pkgs.portaudio ]; 19 20 meta = with stdenv.lib; { 21 description = "Python bindings for PortAudio"; 22 homepage = "http://people.csail.mit.edu/hubert/pyaudio/"; 23 license = licenses.mit; 24 }; 25 26}