caffe2: python36Packages -> python3Packages

This commit is contained in:
Martin Weinelt 2021-10-03 01:11:51 +02:00
parent 3a611c6f02
commit 77c4e2f8dd
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

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