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:
parent
ce26e2f25a
commit
63d8d3ccba
@ -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
|
||||
];
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user