master
/ miniconda3 / pkgs / conda-package-streaming-0.8.0-py311h06a4308_0 / info / recipe / meta.yaml.template

meta.yaml.template @a8e0244 raw · history · blame

{% set name = "conda-package-streaming" %}
{% set version = "0.8.0" %}

package:
  name: {{ name|lower }}
  version: {{ version }}

source:
  url: https://github.com/conda/conda-package-streaming/archive/refs/tags/v{{ version }}.tar.gz
  sha256: 5e5212153e285a48223c70ede741d00304725a11cb690c494464a12f04c607f5

build:
  number: 0
  skip: True  # [py<37]
  script: {{ PYTHON }} -m pip install --no-deps --no-build-isolation . -vv

requirements:
  host:
    - flit-core
    - python
    - pip
    - wheel
  run:
    - python
    - zstandard >=0.15
    # 'requests' is optional, only needed for 'url' submodule

test:
  imports:
    - conda_package_streaming
    - conda_package_streaming.url
  requires:
    - pip
    - requests
  commands:
    - pip check

about:
  home: https://github.com/conda/conda-package-streaming
  summary:  An efficient library to read from new and old format .conda and .tar.bz2 conda packages.
  description: |
    An efficient library to read from new and old format .conda and .tar.bz2 conda packages.
  license: BSD-3-Clause
  license_family: BSD
  license_file: LICENSE
  doc_url: https://conda.github.io/conda-package-streaming/
  dev_url: https://github.com/conda/conda-package-streaming

extra:
  recipe-maintainers:
    - dholth