-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmeta.yaml
60 lines (53 loc) · 1.38 KB
/
meta.yaml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{% set version = "8.6.1" %}
package:
name: importlib-metadata
version: {{ version }}
source:
url: https://pypi.org/packages/source/i/importlib_metadata/importlib_metadata-{{ version }}.tar.gz
sha256: 310b41d755445d74569f993ccfc22838295d9fe005425094fad953d7f15c8580
build:
number: 0
noarch: python
outputs:
- name: importlib-metadata
script: build_base.sh
requirements:
build:
- python # [build_platform != target_platform]
- cross-python_{{ target_platform }} # [build_platform != target_platform]
host:
- python {{ python_min }}
- pip
- setuptools
- setuptools_scm !=6.1.0
run:
- python >={{ python_min }}
- zipp >=0.5
test:
requires:
- pip
- python {{ python_min }}
commands:
- pip check
imports:
- importlib_metadata
- name: importlib_metadata
build:
noarch: generic
requirements:
run:
- {{ pin_subpackage('importlib-metadata', max_pin="x.x.x") }}
test:
imports:
- importlib_metadata
about:
home: https://github.com/python/importlib_metadata
license: Apache-2.0
license_family: APACHE
license_file: LICENSE
summary: A library to access the metadata for a Python package
extra:
recipe-maintainers:
- nehaljwani
- nicoddemus
- marcelotrevisani