{% set name = "async-timeout" %}
{% set version = "4.0.3" %}

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

source:
  url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
  sha256: 4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f

build:
  number: 0
  noarch: python
  script: {{ PYTHON }} -m pip install . -vv

requirements:
  host:
    - python >=3.7
    - pip
  run:
    - python >=3.7
    - typing-extensions >=3.6.5

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

about:
  home: http://github.com/aio-libs/async_timeout
  license: Apache-2.0
  license_family: Apache
  license_file: LICENSE
  summary: Timeout context manager for asyncio programs
  dev_url: http://github.com/aio-libs/async_timeout

extra:
  recipe-maintainers:
    - sodre
    - carlodri
    - ocefpaf
