3
0
Fork 0
forked from mirrors/nixpkgs

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
'';
passthru.libtensorflow = bazel-build.out;
passthru = {
deps = bazel-build.deps;
libtensorflow = bazel-build.out;
};
inherit (bazel-build) meta;
}

View file

@ -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;
}