pyaudio: New package, version 0.2.4.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
90f1e5b672
commit
79fa3e2181
@ -1735,6 +1735,32 @@ let pythonPackages = python.modules // rec {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
pyaudio = pkgs.stdenv.mkDerivation rec {
|
||||||
|
name = "python-pyaudio-${version}";
|
||||||
|
version = "0.2.4";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://people.csail.mit.edu/hubert/pyaudio/packages/pyaudio-${version}.tar.gz";
|
||||||
|
md5 = "623809778f3d70254a25492bae63b575";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ python pkgs.portaudio ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
python setup.py install --prefix=$out
|
||||||
|
'';
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Python bindings for PortAudio";
|
||||||
|
homepage = "http://people.csail.mit.edu/hubert/pyaudio/";
|
||||||
|
license = stdenv.lib.licenses.mit;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
Babel = buildPythonPackage (rec {
|
Babel = buildPythonPackage (rec {
|
||||||
name = "Babel-0.9.6";
|
name = "Babel-0.9.6";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user