-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmeta.yaml
66 lines (59 loc) · 1.75 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
61
62
63
64
65
66
{% set version = "6.0.2" %}
package:
name: pyyaml
version: {{ version }}
source:
url: https://pypi.org/packages/source/P/PyYAML/pyyaml-{{ version }}.tar.gz
sha256: d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e
patches:
- 0001-Ensure-we-do-not-end-up-wih-CRLF-line-endings-on-tes.patch
- 0002-remove-setuptools-use-distutils-py38.patch # [py<39]
build:
number: 2
skip: true # [py<38]
noarch: python # [use_noarch]
track_features:
- pyyaml_no_compile # [use_noarch]
requirements:
build:
- python # [build_platform != target_platform]
- cross-python_{{ target_platform }} # [build_platform != target_platform]
- cython # [build_platform != target_platform]
- {{ compiler('c') }}
- {{ stdlib("c") }}
host:
- python # [not use_noarch]
- python {{ python_min }}.* # [use_noarch]
- cython
- setuptools
- packaging
- pip
- yaml
run:
- python # [not use_noarch]
- python >={{ python_min }}.* # [use_noarch]
- yaml
test:
imports:
- yaml
- _yaml # [python_impl == "cpython" and not use_noarch]
commands:
# temporarily skipping pip check on win and pypy build because of bizarre tqdm issue
- pip check # [not (win and python_impl == 'pypy')]
requires:
- pip
- python {{ python_min }}.* # [use_noarch]
about:
home: http://pyyaml.org/wiki/PyYAML
license_file: LICENSE
license: MIT
license_family: MIT
summary: YAML parser and emitter for Python
dev_url: https://github.com/yaml/pyyaml
doc_url: http://pyyaml.org/wiki/PyYAML
extra:
recipe-maintainers:
- jakirkham
- msarahan
- pelson
- ocefpaf