Commit 1d763bd5 authored by Sergei Trofimovich's avatar Sergei Trofimovich
Browse files

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 );
parent 24025052
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 );
  };