pythonPackages.pyaudio: 0.2.9 -> 0.2.11

This commit is contained in:
Mario Rodas 2019-04-24 00:12:00 -05:00 committed by Frederik Rietdijk
parent bb5c039fc9
commit 53579ceed4

View File

@ -7,19 +7,19 @@
buildPythonPackage rec {
pname = "PyAudio";
version = "0.2.9";
version = "0.2.11";
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
sha256 = "bfd694272b3d1efc51726d0c27650b3c3ba1345f7f8fdada7e86c9751ce0f2a1";
sha256 = "93bfde30e0b64e63a46f2fd77e85c41fd51182a4a3413d9edfaf9ffaa26efb74";
};
buildInputs = [ pkgs.portaudio ];
meta = with stdenv.lib; {
description = "Python bindings for PortAudio";
homepage = "http://people.csail.mit.edu/hubert/pyaudio/";
homepage = https://people.csail.mit.edu/hubert/pyaudio/;
license = licenses.mit;
};