{% set name = "cachetools" %} {% set version = "5.2.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 6a94c6402995a99c3970cc7e4884bb60b4a8639938157eeed436098bf9831757 build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - pip - python >=3.7 run: - python >=3.7 test: imports: - cachetools commands: - pip check requires: - pip about: home: https://github.com/tkem/cachetools license: MIT license_family: MIT license_file: LICENSE summary: Extensible memoizing collections and decorators description: | This module provides various memoizing collections and decorators, including variants of the Python 3 Standard Library @lru_cache function decorator. doc_url: http://pythonhosted.org/cachetools/ dev_url: https://github.com/tkem/cachetools extra: recipe-maintainers: - maartenbreddels - marcelotrevisani