python3Packages.sounddevice: disable <python3.5

This commit is contained in:
Jonathan Ringer 2020-08-29 11:08:52 -07:00 committed by Frederik Rietdijk
parent 589335b829
commit 5b52eb9752

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, cffi
, numpy
, portaudio
@ -10,6 +11,7 @@
buildPythonPackage rec {
pname = "sounddevice";
version = "0.4.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;