Merge pull request #87899 from bhipple/feature/tensorflow-srcs

tensorflow: passthru deps from bazel build
This commit is contained in:
Matthew Bauer 2020-05-19 21:31:34 -05:00 committed by GitHub
commit 69232bc088
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -430,7 +430,10 @@ in buildPythonPackage {
EOF EOF
''; '';
passthru.libtensorflow = bazel-build.out; passthru = {
deps = bazel-build.deps;
libtensorflow = bazel-build.out;
};
inherit (bazel-build) meta; inherit (bazel-build) meta;
} }

View File

@ -421,7 +421,10 @@ in buildPythonPackage {
''; '';
# Regression test for #77626 removed because not more `tensorflow.contrib`. # 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; inherit (bazel-build) meta;
} }