python3Packages.pybluez: mark disabled, requires use2to3

This commit is contained in:
Jonathan Ringer 2022-03-03 17:31:23 -08:00 committed by Martin Weinelt
parent da5aba49bc
commit f88a4d31f8

View file

@ -2,11 +2,14 @@
, buildPythonPackage
, fetchFromGitHub
, pkgs
, isPy3k
}:
buildPythonPackage rec {
version = "unstable-20160819";
pname = "pybluez";
# requires use2to3, which is no longer supported in setuptools>58
disabled = isPy3k;
propagatedBuildInputs = [ pkgs.bluez ];