python3.pkgs.openllm-core.optional-dependencies.full: fix eval
Without the change eval of optional dependencies fails as: $ nix build --no-link -f. python3.pkgs.openllm-core.optional-dependencies.full error: undefined variable 'passthru' at /home/slyfox/dev/git/nixpkgs-master/pkgs/development/python-modules/openllm-core/default.nix:92:10: 91| # use absolute path to disambiguate with derivbation argument 92| ++ passthru.optional-dependencies.bentoml | ^ 93| ++ fine-tune );
This commit is contained in:
parent
24025052f8
commit
1d763bd596
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ buildPythonPackage rec {
|
|||
full = with optional-dependencies; (
|
||||
vllm
|
||||
# use absolute path to disambiguate with derivbation argument
|
||||
++ passthru.optional-dependencies.bentoml
|
||||
++ optional-dependencies.bentoml
|
||||
++ fine-tune );
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue