14
0
forked from pool/python-typepy

- Switch to pyproject macros.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typepy?expand=0&rev=20
This commit is contained in:
2025-06-04 06:25:53 +00:00
committed by Git OBS Bridge
parent 0c677f1012
commit c0851624f8
2 changed files with 13 additions and 6 deletions

View File

@@ -22,10 +22,12 @@ Version: 1.3.4
Release: 0
Summary: Python library for run time variable type checker
License: MIT
Group: Development/Languages/Python
URL: https://github.com/thombashi/typepy
Source: https://files.pythonhosted.org/packages/source/t/typepy/typepy-%{version}.tar.gz
BuildRequires: %{python_module setuptools >= 38.3.0}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools >= 64}
BuildRequires: %{python_module setuptools_scm >= 8}
BuildRequires: %{python_module wheel}
BuildRequires: python-rpm-macros
# SECTION test requirements
BuildRequires: %{python_module mbstrdecoder >= 1.0.0}
@@ -49,16 +51,15 @@ typepy is a Python library for variable type checker/validator/converter at run
%prep
%setup -q -n typepy-%{version}
echo > requirements/test_requirements.txt
# Remove build alias
sed -i '/build =/d' setup.cfg
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
@@ -67,6 +68,7 @@ sed -i '/build =/d' setup.cfg
%files %{python_files}
%license LICENSE
%doc README.rst
%{python_sitelib}/typepy*
%{python_sitelib}/typepy
%{python_sitelib}/typepy-%{version}.dist-info
%changelog