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:
@@ -76,7 +76,7 @@ buildPythonPackage rec {
|
||||
// binary-hash
|
||||
);
|
||||
|
||||
optional-dependencies = rec {
|
||||
passthru.optional-dependencies = rec {
|
||||
data-deps = [
|
||||
pandas
|
||||
pyarrow
|
||||
|
||||
Reference in New Issue
Block a user