caffe2: Use python36Packages explicitly.

Fallout from 0f38d9669ffd74991b65a9c40cdbcf2a98438d1f
This commit is contained in:
Samuel Dionne-Riel 2018-12-09 22:15:29 -05:00 committed by Robert Schütz
parent f9b16e60da
commit 31298112f3

View File

@ -21800,9 +21800,9 @@ in
};
caffe2 = callPackage ../development/libraries/science/math/caffe2 (rec {
inherit (python3Packages) python future six numpy pydot;
inherit (python36Packages) python future six numpy pydot;
protobuf = protobuf3_1;
python-protobuf = python3Packages.protobuf.override { inherit protobuf; };
python-protobuf = python36Packages.protobuf.override { inherit protobuf; };
# Used only for image loading.
opencv3 = opencv3WithoutCuda;
});