File python-jupyter_nbsmoke.spec of Package python-jupyter_nbsmoke
#
# spec file for package python-jupyter_nbsmoke
#
# Copyright (c) 2018 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 http://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-jupyter_nbsmoke
Version: 0.2.7
Release: 0
Summary: Basic notebook checks
License: BSD-3-Clause
Group: Development/Languages/Python
Url: https://github.com/pyviz/nbsmoke
Source: https://files.pythonhosted.org/packages/source/n/nbsmoke/nbsmoke-%{version}.tar.gz
Source99: python-jupyter_nbsmoke-rpmlintrc
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
# SECTION test requirements
BuildRequires: %{python_module beautifulsoup4}
BuildRequires: %{python_module jupyter_client}
BuildRequires: %{python_module jupyter_ipykernel}
BuildRequires: %{python_module jupyter_nbconvert}
BuildRequires: %{python_module jupyter_nbformat}
BuildRequires: %{python_module pyflakes}
BuildRequires: %{python_module pytest >= 3.1.1}
BuildRequires: %{python_module requests}
# /SECTION
Requires: python-beautifulsoup4
Requires: python-jupyter_client
Requires: python-jupyter_ipykernel
Requires: python-jupyter_nbconvert
Requires: python-jupyter_nbformat
Requires: python-pyflakes
Requires: python-pytest >= 3.1.1
Requires: python-requests
BuildArch: noarch
%python_subpackages
%description
Basic notebook smoke tests for checking whether the notebooks run,
and whether they contain lint.
WARNING: early stage proof of concept; work in progress. Use at your
own risk.
In particular, this extension is supposed to handle ipython magics as
far as possible, but has not yet been widely tested.
%prep
%setup -q -n nbsmoke-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%python_expand $python -c "import nbsmoke"
%files %{python_files}
%doc README.rst
%license LICENSE
%{python_sitelib}/*
%changelog