pypy27Packages.ray.optional-dependencies: fix the eval

Without the change the eval fails as:

    $ nix build --no-link -f. pypy27Packages.kserve.dependencies
    error:
       … while evaluating the attribute 'passthru.optional-dependencies.serve-deps'
         at pkgs/stdenv/generic/make-derivation.nix:633:14:
          632|
          633|      inherit passthru overrideAttrs;
             |              ^
          634|      inherit meta;

       error: attribute 'optional-dependencies' missing
       at pkgs/development/python-modules/kserve/default.nix:77:8:
           76|     uvicorn
           77|   ] ++ ray.passthru.optional-dependencies.serve-deps;
             |        ^
           78|
This commit is contained in:
Sergei Trofimovich
2024-07-23 21:44:11 +01:00
parent 65f98a6801
commit 1ba8bcf8ae
@@ -76,7 +76,7 @@ buildPythonPackage rec {
// binary-hash
);
optional-dependencies = rec {
passthru.optional-dependencies = rec {
data-deps = [
pandas
pyarrow