-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
meta.yaml
58 lines (51 loc) · 1.34 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
{% set name = "pydantic" %}
{% set version = "2.10.2" %}
{% set repo_url = "https://github.com/pydantic/pydantic" %}
{% set docs_url = "https://docs.pydantic.dev" %}
package:
name: {{ name }}
version: {{ version }}
source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 2bc2d7f17232e0841cbba4641e65ba1eb6fafb3a08de3a091ff3ce14a197c4fa
build:
noarch: python
script: {{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv
number: 0
requirements:
host:
- python {{ python_min }}
- hatchling
- hatch-fancy-pypi-readme >=22.5.0
- pip
run:
- typing_extensions >=4.12.2
- python >={{ python_min }}
- typing-extensions >=4.6.1
- annotated-types >=0.6.0
- pydantic-core ==2.27.1
test:
imports:
- pydantic
commands:
- pip check
requires:
- pip
- python {{ python_min }}
about:
home: {{ repo_url }}
license: MIT
license_family: MIT
license_file: LICENSE
summary: Data validation and settings management using python type hinting
description: |
Data validation and settings management using python type hinting.
See documentation <{{ docs_url }}> for more details.
doc_url: {{ docs_url }}
dev_url: {{ repo_url }}
extra:
recipe-maintainers:
- samuelcolvin
- dgasmith
- davidbrochart
- pavelzw