about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pc-ble-driver-py/default.nix
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-10-25 13:57:04 -0700
committerJon <jonringer@users.noreply.github.com>2020-10-27 14:05:11 -0700
commitf08a5cc832809dd28ac95be1cf94db19c8f53ba6 (patch)
tree0395be3a736ef8a8067a5031465fc4dcbdc8dd5c /pkgs/development/python-modules/pc-ble-driver-py/default.nix
parent22ac8b79b0fcc197018855a901350d2217acd1ab (diff)
python2Packages.pc-ble-driver: disable for python2
Diffstat (limited to 'pkgs/development/python-modules/pc-ble-driver-py/default.nix')
-rw-r--r--pkgs/development/python-modules/pc-ble-driver-py/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pc-ble-driver-py/default.nix b/pkgs/development/python-modules/pc-ble-driver-py/default.nix
index 6250b5a2202d9..64430ca7e1f08 100644
--- a/pkgs/development/python-modules/pc-ble-driver-py/default.nix
+++ b/pkgs/development/python-modules/pc-ble-driver-py/default.nix
@@ -1,9 +1,10 @@
-{ stdenv, fetchFromGitHub, cmake, git, swig, boost, udev, pc-ble-driver
+{ stdenv, fetchFromGitHub, cmake, git, swig, boost, udev, pc-ble-driver, pythonOlder
 , buildPythonPackage, enum34, wrapt, future, setuptools, scikit-build }:
 
 buildPythonPackage rec {
   pname = "pc-ble-driver-py";
   version = "0.14.2";
+  disabled = pythonOlder "3.6";
 
   src = fetchFromGitHub {
     owner = "NordicSemiconductor";