diff --git a/recipes/conda/meta.yaml b/recipes/conda/meta.yaml new file mode 100644 index 0000000000000..f6ccdb3a0d097 --- /dev/null +++ b/recipes/conda/meta.yaml @@ -0,0 +1,50 @@ +{% set version = "4.0.6" %} + +package: + name: conda + version: {{ version }} + +source: + fn: conda-{{ version }}.tar.gz + url: https://github.com/conda/conda/archive/{{ version }}.tar.gz + sha256: 4ca7ec875de13519aeb3eebc9beca23adf3c41e8852c186deb503e8bc2282c40 + +build: + number: 0 + script: CONDA_DEFAULT_ENV='' python setup.py install + +requirements: + build: + - python + - conda-env + - pycosat + - pyyaml + - requests + + run: + - python + - conda-env + - pycosat + - pyyaml + - requests + +test: + imports: + - conda_env + + commands: + - which conda # [unix] + - where conda # [win] + +about: + home: https://github.com/conda/conda + summary: OS-agnostic, system-level binary package manager. + license: BSD 3-Clause + +extra: + recipe-maintainers: + - jakirkham + - kalefranz + - mcg1969 + - msarahan + - pelson