mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
python3Packages.sounddevice: convert to pyproject
This commit is contained in:
parent
6a5edad544
commit
c7990fc595
@ -4,6 +4,7 @@
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
isPy27,
|
||||
setuptools,
|
||||
cffi,
|
||||
numpy,
|
||||
portaudio,
|
||||
@ -13,7 +14,7 @@
|
||||
buildPythonPackage rec {
|
||||
pname = "sounddevice";
|
||||
version = "0.5.0";
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
@ -21,7 +22,9 @@ buildPythonPackage rec {
|
||||
hash = "sha256-DelSd2VLPUA9nBXe08bO3zB+myfMnOe9mVookdDJVa8=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
cffi
|
||||
numpy
|
||||
portaudio
|
||||
|
Loading…
Reference in New Issue
Block a user