mirror of
https://abf.rosa.ru/djam/python-jsonschema.git
synced 2025-02-23 16:32:49 +00:00
39 lines
940 B
RPMSpec
39 lines
940 B
RPMSpec
%define oname jsonschema
|
|
|
|
Name: python-%{oname}
|
|
Version: 2.4.0
|
|
Release: 2
|
|
Summary: An implementation of JSON Schema validation for Python
|
|
Source0: http://pypi.python.org/packages/source/j/jsonschema/jsonschema-%{version}.tar.gz
|
|
License: MIT
|
|
Group: Development/Python
|
|
Url: http://github.com/Julian/jsonschema
|
|
BuildArch: noarch
|
|
BuildRequires: pkgconfig(python)
|
|
BuildRequires: pythonegg(nose)
|
|
BuildRequires: pythonegg(mock)
|
|
|
|
|
|
%description
|
|
jsonschema is JSON Schema validator currently based on
|
|
http://tools.ietf.org/html/draft-zyp-json-schema-03
|
|
|
|
%prep
|
|
%setup -q -n %{oname}-%{version}
|
|
|
|
%build
|
|
python setup.py build
|
|
|
|
%install
|
|
python setup.py install --root=%{buildroot}
|
|
|
|
%check
|
|
%{_bindir}/nosetests-2* -v
|
|
|
|
%files
|
|
%doc CHANGELOG.rst COPYING README.rst
|
|
%{_bindir}/jsonschema
|
|
%{py_puresitedir}/jsonschema/*.py*
|
|
%{py_puresitedir}/jsonschema/tests/*.py*
|
|
%{py_puresitedir}/jsonschema*.egg-info
|
|
%{py_puresitedir}/jsonschema/schemas/draft*.json
|