mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
python3Packages.openllm-client: fix optional-dependencies
attribute
Without the change `python3Packages.openllm-client.optional-dependencies.full` always fails to evaluate as: $ nix build --no-link -f. python3Packages.openllm-client.optional-dependencies.full error: error: attribute 'agents' missing 49| soundfile 50| ] ++ transformers.agents; | ^ 51| full = passthru.optional-dependencies.grpc ++ passthru.optional-dependencies.agents; As `transformers` never exposed `agents` let's just drop the reference.
This commit is contained in:
parent
01962add7e
commit
7a851d2593
@ -47,7 +47,7 @@ buildPythonPackage rec {
|
||||
transformers
|
||||
# diffusers
|
||||
soundfile
|
||||
] ++ transformers.agents;
|
||||
];
|
||||
full = passthru.optional-dependencies.grpc ++ passthru.optional-dependencies.agents;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user