python313Packages.autobahn: fix optional-dependencies.all expression

Relying on `with self` leaked in twisted from the outer scope, which
broke the list concat.
This commit is contained in:
Martin Weinelt 2025-02-02 23:00:46 +01:00
parent ce26e2f25a
commit 63d8d3ccba
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -84,8 +84,14 @@ buildPythonPackage rec {
optional-dependencies = lib.fix (self: {
all =
with self;
accelerate ++ compress ++ encryption ++ nvx ++ serialization ++ scram ++ twisted ++ ui;
self.accelerate
++ self.compress
++ self.encryption
++ self.nvx
++ self.serialization
++ self.scram
++ self.twisted
++ self.ui;
accelerate = [
# wsaccel
];