master
/ miniconda3 / pkgs / backcall-0.2.0-pyhd3eb1b0_0 / info / recipe / meta.yaml.template

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

{% set name = "backcall" %}
{% set version = "0.2.0" %}
{% set sha256 = "5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e" %}

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

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

build:
  noarch: python
  number: 0
  script: python -m pip install --no-deps --ignore-installed .

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

test:
  imports:
    - backcall

about:
  home: https://github.com/takluyver/backcall/
  license: BSD-3-Clause
  license_family: BSD
  #license_file: LICENSE.txt
  summary: 'Specifications for callback functions passed in to an API'
  description: |
    Backcall provides a way of specifying the parameters that callback functions
    need to accept, and adapting callbacks that take fewer parameters, so you
    can add parameters to your callback API without breaking code that doesn't
    know about them.

extra:
  recipe-maintainers:
    - takluyver