python3Packages.pc-ble-driver-py: disable for python3.9

This commit is contained in:
Jonathan Ringer 2020-11-29 13:15:24 -08:00 committed by Frederik Rietdijk
parent cdb402ce3d
commit 356d1d95c7

View file

@ -1,10 +1,10 @@
{ stdenv, fetchFromGitHub, cmake, git, swig, boost, udev, pc-ble-driver, pythonOlder
, buildPythonPackage, enum34, wrapt, future, setuptools, scikit-build }:
, buildPythonPackage, enum34, wrapt, future, setuptools, scikit-build, pythonAtLeast }:
buildPythonPackage rec {
pname = "pc-ble-driver-py";
version = "0.14.2";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.6" || pythonAtLeast "3.9";
src = fetchFromGitHub {
owner = "NordicSemiconductor";