blob: ade4a6a732d2df2af210a070948db4da760a20b0 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 | {% set name = "extension-helpers" %}
{% set version = "0.1" %}
package:
  name: "{{ name|lower }}"
  version: "{{ version }}"
source:
  url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
  sha256: ac8a6fe91c6d98986a51a9f08ca0c7945f8fd70d95b662ced4040ae5eb973882
build:
  number: 0
  script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv "
requirements:
  host:
    - pip
    - python
  run:
    - python
about:
  home: The package home page
  license: BSD
  license_family: BSD
  license_file: 
  summary: Summary of the package
  doc_url: 
  dev_url: 
extra:
  recipe-maintainers:
    - your-github-id-here
 |