File python-altair.spec of Package python-altair
#
# spec file for package python-altair
#
# 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-altair
Version: 2.3.0
Release: 0
Summary: Declarative statistical visualization library for Python
License: BSD-3-Clause
Group: Development/Languages/Python
URL: http://altair-viz.github.io
Source: https://files.pythonhosted.org/packages/source/a/altair/altair-%{version}.tar.gz
BuildRequires: %{python_module Jinja2}
BuildRequires: %{python_module entrypoints}
BuildRequires: %{python_module jsonschema}
BuildRequires: %{python_module jupyter_ipython}
BuildRequires: %{python_module numpy}
BuildRequires: %{python_module pandas}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six}
BuildRequires: %{python_module toolz}
BuildRequires: %{python_module typing}
BuildRequires: %{python_module vega_datasets}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Jinja2
Requires: python-entrypoints
Requires: python-jsonschema
Requires: python-numpy
Requires: python-pandas
Requires: python-six
Requires: python-toolz
Requires: python-typing
Recommends: python-vega_datasets
Recommends: python-jupyter_ipython
BuildArch: noarch
%python_subpackages
%description
This package provides a Python API for building statistical visualizations
in a declarative manner. This API contains no actual visualization rendering
code, but instead emits JSON data structures following the `Vega-Lite`_
specification. For convenience, Altair can optionally use `ipyvega`_ to
seamlessly display client-side renderings in the Jupyter notebook.
%prep
%setup -q -n altair-%{version}
%build
%python_build
%install
%python_install
# Deduplicating files can generate a RPMLINT warning for pyc mtime
%{python_expand %fdupes %{buildroot}%{$python_sitearch}
$python -m compileall -d %{$python_sitearch} %{buildroot}%{$python_sitearch}/altair/vega/v3/
$python -O -m compileall -d %{$python_sitearch} %{buildroot}%{$python_sitearch}/altair/vega/v3/
$python -m compileall -d %{$python_sitearch} %{buildroot}%{$python_sitearch}/altair/vega/v4/
$python -O -m compileall -d %{$python_sitearch} %{buildroot}%{$python_sitearch}/altair/vega/v4/
%fdupes %{buildroot}%{$python_sitearch}
}
# Tests require a network connection
# %%check
# export LANG=en_US.UTF-8
# %%{python_expand export BUILDROOT=%%{buildroot}%{$python_sitelib}
# pytest-%%{$python_bin_suffix} altair
# }
%files %{python_files}
%doc CHANGES.md README.md
%license LICENSE
%{python_sitelib}/*
%changelog