Want to install cv2, not working, help!

here’s my meta.yaml file. I want to be able to read videos using cv2 and parse out certain parts of the video using cv2 video capture, but it’s not working. Any suggestions?

# If you need to modify the runtime requirements for your package,
# update the ‘requirements.run’ section in this file.

package:
name: “{{ PACKAGE_NAME }}”
version: “{{ PACKAGE_VERSION }}”

source:
path: ../src

requirements:
# Tools required to build the package. These packages are run on the build system and include
# things such as revision control systems (Git, SVN) make tools (GNU make, Autotool, CMake) and
# compilers (real cross, pseudo-cross, or native when not cross-compiling), and any source pre-processors.
# https://docs.conda.io/projects/conda-build/en/latest/resources/define-metadata.html#build
build:
- python 3.9.*
- setuptools

# Packages required to run the package. These are the dependencies that are installed automatically
# whenever the package is installed.
# https://docs.conda.io/projects/conda-build/en/latest/resources/define-metadata.html#run
run:
- python 3.9.*
- transforms {{ PYTHON_TRANSFORMS_VERSION }}
- transforms-expectations
- transforms-preview
- transforms-verbs
- foundry-transforms-lib-python

pip:
- opencv-python

build:
script: python setup.py install --single-version-externally-managed --record=record.txt

test:
requires:
- pytest
commands:
- pytest tests