1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

caffe2: Use python36Packages explicitly.

Fallout from 0f38d9669f
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;
});