File python3-arrow.spec of Package python3-arrow
#
# spec file for package python3-arrow
#
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: python3-arrow
Version: 0.7.0
Release: 0
Summary: Better dates and times for Python
License: Apache-2.0
Group: Development/Languages/Python
Url: http://crsmithdev.com/arrow
Source: https://files.pythonhosted.org/packages/source/a/arrow/arrow-%{version}.tar.gz
BuildRequires: python3-chai
BuildRequires: python3-dateutil
BuildRequires: python3-devel
BuildRequires: python3-nose
BuildRequires: python3-simplejson
Requires: python3-dateutil
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%description
Arrow is a Python library that offers a sensible, human-friendly
approach to creating, manipulating, formatting and converting dates,
times, and timestamps. It implements and updates the datetime type,
plugging gaps in functionality, and provides an intelligent module
API that supports many common creation scenarios. Simply put, it
helps you work with dates and times with fewer imports and a lot
less code.
Arrow is heavily inspired by moment.js and requests.
%prep
%setup -q -n arrow-%{version}
%build
python3 setup.py build
%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
%check
PYTHONPATH="%{buildroot}%{python3_sitelib}:$PYTHONPATH" nosetests
%files
%defattr(-,root,root,-)
%doc LICENSE README.rst HISTORY.md
%{python3_sitelib}/*
%changelog