Merge pull request #289531 from mweinelt/python312full-bluez

cpython: allow full variant on all platformns where bluez is available
This commit is contained in:
Martin Weinelt 2024-02-22 16:37:11 +01:00 committed by GitHub
commit faadcf03b6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 10 deletions

View file

@ -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.";

View file

@ -17755,43 +17755,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;
};