Merge pull request #295692 from Stunkymonkey/python-pyaudio-normalize

python312Packages.pyaudio: normalize pname
This commit is contained in:
Sandro 2024-03-25 20:20:48 +01:00 committed by GitHub
commit a26aaddb8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -6,12 +6,13 @@
}:
buildPythonPackage rec {
pname = "PyAudio";
pname = "pyaudio";
version = "0.2.14";
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
pname = "PyAudio";
inherit version;
hash = "sha256-eN//OHm0mU0fT8ZIVkald1XG7jwZZHpJH3kKCJW9L4c=";
};