forked from mirrors/nixpkgs
Merge pull request #87899 from bhipple/feature/tensorflow-srcs
tensorflow: passthru deps from bazel build
This commit is contained in:
commit
69232bc088
|
@ -430,7 +430,10 @@ in buildPythonPackage {
|
|||
EOF
|
||||
'';
|
||||
|
||||
passthru.libtensorflow = bazel-build.out;
|
||||
passthru = {
|
||||
deps = bazel-build.deps;
|
||||
libtensorflow = bazel-build.out;
|
||||
};
|
||||
|
||||
inherit (bazel-build) meta;
|
||||
}
|
||||
|
|
|
@ -421,7 +421,10 @@ in buildPythonPackage {
|
|||
'';
|
||||
# Regression test for #77626 removed because not more `tensorflow.contrib`.
|
||||
|
||||
passthru.libtensorflow = bazel-build.out;
|
||||
passthru = {
|
||||
deps = bazel-build.deps;
|
||||
libtensorflow = bazel-build.out;
|
||||
};
|
||||
|
||||
inherit (bazel-build) meta;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue