pythonPackages.pyaudio: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-25 22:00:36 -04:00
committed by Frederik Rietdijk
parent 3050ded4db
commit 5bddba89dc
2 changed files with 27 additions and 19 deletions

View File

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