master
/ miniconda3 / pkgs / packaging-23.0-py310h06a4308_0 / info / recipe / meta.yaml.template

meta.yaml.template @74036c5

41a0142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
{% set version = "23.0" %}

package:
  name: packaging
  version: {{ version }}

source:
  url: https://pypi.io/packages/source/p/packaging/packaging-{{ version }}.tar.gz
  sha256: b6ad297f8907de0fa2fe1ccbd26fdaf387f5f47c7275fedf8cce89f99446cf97

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

requirements:
  host:
    - python
    - flit-core
    - pip
    - setuptools
    - wheel
  run:
    - python

test:
  imports:
    - packaging
  requires:
    - pip
  commands:
    - pip check


about:
  home: https://github.com/pypa/packaging
  license: Apache-2.0 or BSD-2-Clause
  license_file: LICENSE
  license_family: Apache
  summary: Core utilities for Python packages
  doc_url: https://packaging.pypa.io
  dev_url: https://github.com/pypa/packaging
  doc_source_url: https://github.com/pypa/packaging/tree/main/docs

extra:
  recipe-maintainers:
    - jakirkham
    - nicoddemus
    - mingwandroid