cpython: allow full variant on all platformns where bluez is available

Closes: #289113
This commit is contained in:
Martin Weinelt
2024-02-17 14:05:32 +01:00
parent 10cfcdbf79
commit bc775ec0dd
2 changed files with 7 additions and 10 deletions
@@ -95,9 +95,6 @@ assert x11Support -> tcl != null
assert bluezSupport -> bluez != null;
assert lib.assertMsg (bluezSupport -> stdenv.isLinux)
"Bluez support is only available on Linux.";
assert lib.assertMsg (enableFramework -> stdenv.isDarwin)
"Framework builds are only supported on Darwin.";
+7 -7
View File
@@ -17741,43 +17741,43 @@ with pkgs;
python3Full = python3.override {
self = python3Full;
pythonAttr = "python3Full";
bluezSupport = true;
bluezSupport = lib.meta.availableOn stdenv.hostPlatform bluez;
x11Support = true;
};
python38Full = python38.override {
self = python38Full;
pythonAttr = "python38Full";
bluezSupport = true;
bluezSupport = lib.meta.availableOn stdenv.hostPlatform bluez;
x11Support = true;
};
python39Full = python39.override {
self = python39Full;
pythonAttr = "python39Full";
bluezSupport = true;
bluezSupport = lib.meta.availableOn stdenv.hostPlatform bluez;
x11Support = true;
};
python310Full = python310.override {
self = python310Full;
pythonAttr = "python310Full";
bluezSupport = true;
bluezSupport = lib.meta.availableOn stdenv.hostPlatform bluez;
x11Support = true;
};
python311Full = python311.override {
self = python311Full;
pythonAttr = "python311Full";
bluezSupport = true;
bluezSupport = lib.meta.availableOn stdenv.hostPlatform bluez;
x11Support = true;
};
python312Full = python312.override {
self = python312Full;
pythonAttr = "python312Full";
bluezSupport = true;
bluezSupport = lib.meta.availableOn stdenv.hostPlatform bluez;
x11Support = true;
};
python313Full = python313.override {
self = python313Full;
pythonAttr = "python313Full";
bluezSupport = true;
bluezSupport = lib.meta.availableOn stdenv.hostPlatform bluez;
x11Support = true;
};