python37Packages.opencv: remove

As far as I can tell after a few days of searching, OpenCV's version 2
does not at all support Python version 3, and other distributions of
Python bindings for OpenCV v2.4.x that I could find do not support
Python3 for this version series.
This commit is contained in:
Michael Reilly 2019-07-07 22:26:06 -04:00 committed by Frederik Rietdijk
parent d4ad4d427d
commit f5665832ec

View file

@ -1647,10 +1647,10 @@ in {
openant = callPackage ../development/python-modules/openant { };
opencv = toPythonModule (pkgs.opencv.override {
opencv = disabledIf isPy3k (toPythonModule (pkgs.opencv.override {
enablePython = true;
pythonPackages = self;
});
}));
opencv3 = toPythonModule (pkgs.opencv3.override {
enablePython = true;