]> git.pld-linux.org Git - packages/python3-pyrsistent.git/blame - python3-pyrsistent.spec
rebuild with tests and docs
[packages/python3-pyrsistent.git] / python3-pyrsistent.spec
CommitLineData
3de0d82c
JB
1#
2# Conditional build:
3%bcond_without tests # unit tests
4
5%define module pyrsistent
6Summary: Persistent/Functional/Immutable data structures
7Summary(pl.UTF-8): Trwałe/funkcyjne/niezmienne struktury danych
8Name: python3-pyrsistent
912943ba 9Version: 0.18.1
91172ae1 10Release: 3
3de0d82c
JB
11License: MIT
12Group: Libraries/Python
13#Source0Download: https://pypi.org/simple/pyrsistent/
14Source0: https://files.pythonhosted.org/packages/source/p/pyrsistent/%{module}-%{version}.tar.gz
912943ba 15# Source0-md5: cef3da08455664bf917dcf8cd00d49a4
3de0d82c 16URL: http://github.com/tobgu/pyrsistent/
912943ba 17BuildRequires: python3-devel >= 1:3.7
3de0d82c
JB
18BuildRequires: python3-setuptools
19%if %{with tests}
912943ba
JB
20BuildRequires: python3-hypothesis < 7
21BuildRequires: python3-pytest < 7
3de0d82c
JB
22BuildRequires: python3-six
23%endif
24BuildRequires: rpm-pythonprov
25BuildRequires: rpmbuild(macros) >= 1.714
912943ba 26Requires: python3-modules >= 1:3.7
3de0d82c
JB
27BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
28
29%description
30Pyrsistent is a number of persistent collections (by some referred to
31as functional data structures). Persistent in the sense that they are
32immutable.
33
34%description -l pl.UTF-8
35Pyrsistent to zbiór trwałych kolekcji (nazywanych także funkcyjnymi
36strukturami danych). Są trwałe w tym sensie, że są niezmienne.
37
38%prep
39%setup -q -n %{module}-%{version}
40
41# Remove bundled egg-info
42%{__rm} -r %{module}.egg-info
43
44%build
45%py3_build
46
47%if %{with tests}
912943ba 48PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \
3de0d82c
JB
49%{__python3} -m pytest tests
50%endif
51
52%install
53rm -rf $RPM_BUILD_ROOT
54
55%py3_install
56
57%clean
58rm -rf $RPM_BUILD_ROOT
59
60%files
61%defattr(644,root,root,755)
2d1fe592 62%doc CHANGES.txt README.rst
3de0d82c
JB
63%attr(755,root,root) %{py3_sitedir}/pvectorc.cpython-*.so
64%{py3_sitedir}/_pyrsistent_version.py
65%{py3_sitedir}/__pycache__/_pyrsistent_version.cpython-*.py[co]
66%{py3_sitedir}/pyrsistent
67%{py3_sitedir}/pyrsistent-%{version}-py*.egg-info
This page took 0.129443 seconds and 4 git commands to generate.