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: { optional-dependencies = lib.fix (self: {
all = all =
with self; self.accelerate
accelerate ++ compress ++ encryption ++ nvx ++ serialization ++ scram ++ twisted ++ ui; ++ self.compress
++ self.encryption
++ self.nvx
++ self.serialization
++ self.scram
++ self.twisted
++ self.ui;
accelerate = [ accelerate = [
# wsaccel # wsaccel
]; ];