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: {
|
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
|
||||||
];
|
];
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user