python-influxdb/python-influxdb.spec
Thomas Bechtold 427d1a679b - update to version v5.1.0
* README: add PyPI status
  * Escape tag values that ends with backslash (#537)
  * Fix for  DataFrameClient issue - seems does not process correctly DateTimeIndex dates (issue #479) (#495)
  * Fix pandas example (#547)
  * Fix wrong session mount (#571)
  * set version to 5.1.0
  * DataFrameClient should escape measurement names (#542)
  * doc: clarify that send_packet takes a list (#545)
  * specify the numpy dependency explicitly to prevent regression in test (#563)
  * Parse column names in a dataframe to avoid breaking the line protocol (#584)
  * adding back dropped database param
  * Allow connecting to influxdb running on a path on the server (#556)
  * Remove comment as issues have been resolved (#581)
  * Remove UDP Precision Restrictions (#557)
  * Update _dataframe_client.py (#593)
  * README: styling

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-influxdb?expand=0&rev=13
2019-01-27 06:44:38 +00:00

69 lines
2.1 KiB
RPMSpec

#
# spec file for package python-influxdb
#
# Copyright (c) 2019 SUSE LINUX 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 https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-influxdb
Version: 5.1.0
Release: 0
Summary: InfluxDB client
License: MIT
Group: Development/Languages/Python
Url: https://github.com/influxdb/influxdb-python
Source: https://files.pythonhosted.org/packages/source/i/influxdb/influxdb-%{version}.tar.gz
BuildRequires: %{python_module python-dateutil >= 2.0.0}
BuildRequires: %{python_module pytz}
BuildRequires: %{python_module requests >= 1.0.3}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six >= 1.9.0}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
# test requirements
BuildRequires: %{python_module mock}
BuildRequires: %{python_module nose}
BuildRequires: %{python_module requests-mock}
%if 0%{?suse_version} >= 1500
BuildRequires: hostname
%endif
Requires: python-python-dateutil >= 2.6.0
Requires: python-pytz
Requires: python-requests >= 1.17.0
Requires: python-six >= 1.10.0
BuildArch: noarch
%python_subpackages
%description
InfluxDB-Python is a client for interacting with InfluxDB_. Maintained by @aviau (https://github.com/aviau).
%prep
%setup -q -n influxdb-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%files %{python_files}
%license LICENSE
%doc README.rst
%{python_sitelib}/*
%changelog