diff --git a/python-pydantic-1.10.9.tar.gz b/python-pydantic-1.10.9.tar.gz new file mode 100644 index 0000000..515f7d8 Binary files /dev/null and b/python-pydantic-1.10.9.tar.gz differ diff --git a/python-pydantic.spec b/python-pydantic.spec new file mode 100644 index 0000000..807809d --- /dev/null +++ b/python-pydantic.spec @@ -0,0 +1,55 @@ +Name: python-pydantic +Version: 1.10.9 +Release: 1 +Summary: Data validation using Python type hinting + +License: MIT +URL: https://github.com/samuelcolvin/pydantic +Source0: https://github.com/samuelcolvin/pydantic/archive/v%{version}/%{name}-%{version}.tar.gz +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: python3dist(setuptools) +# For check phase +BuildRequires: python3-mypy +BuildRequires: python3dist(pytest) +BuildRequires: python3dist(hypothesis) + +%description +Data validation and settings management using python type hinting. + +%package -n python3-pydantic +Summary: %{summary} +%{?python_provide:%python_provide python3-pydantic} + +Requires: python3-email-validator >= 1.0.3 +Requires: python3-ujson >= 1.35 + +%description -n python3-pydantic +Data validation and settings management using python type hinting. + +%prep +%autosetup -n pydantic-%{version} +# Remove bundled egg-info +rm -rf pydantic.egg-info + +%build +%py3_build + +# Docs are in MarkDown, and should be added when mkdocs is packaged. + +%install +%py3_install + +%check +%{__python3} setup.py test + +%files -n python3-pydantic +%license LICENSE +%doc README.md +%{python3_sitelib}/pydantic +%{python3_sitelib}/pydantic-%{version}-py%{python3_version}.egg-info + +%changelog +* Mon Jun 26 2023 mengzhaoa - 1.10.9-1 +- Initial package.