diff --git a/recipes/conda-oci-mirror/meta.yaml b/recipes/conda-oci-mirror/meta.yaml new file mode 100644 index 0000000000000..7c74965d79f5e --- /dev/null +++ b/recipes/conda-oci-mirror/meta.yaml @@ -0,0 +1,50 @@ + +{% set name = "conda-oci-mirror" %} +{% set version = "0.1.0" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://github.com/channel-mirrors/conda-oci-mirror/archive/v{{ version }}.tar.gz + sha256: 64a5040227a8cef887ee6add3f634149de8322e9d890ba41fe13ac46c4b83795 + + +build: + script: {{ PYTHON }} -m pip install . -vv + number: 0 + noarch: python + +requirements: + host: + - python >=3.7 + - pip + run: + - python >=3.7 + - click + - requests + - oras-py 0.1.14 + - conda-package-handling + +test: + imports: + - conda_oci_mirror + - conda_oci_mirror.mirror + - conda_oci_mirror.repo + requires: + - pip + commands: + - pip check + - conda-oci --help + +about: + home: https://github.com/channel-mirrors/conda-oci-mirror + summary: 'Tools to mirror conda packages to an OCI registry' + license: BSD-3-Clause + license_file: LICENSE + +extra: + recipe-maintainers: + - jaimergp + - wolfv