2020-02-24 18:58:04 +01:00
|
|
|
#
|
2021-09-22 16:57:58 +02:00
|
|
|
# spec file
|
2020-02-24 18:58:04 +01:00
|
|
|
#
|
2022-01-15 20:33:25 +01:00
|
|
|
# Copyright (c) 2022 SUSE LLC
|
2020-02-24 18:58:04 +01:00
|
|
|
#
|
|
|
|
# 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/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2021-04-01 12:21:32 +02:00
|
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
|
|
%if "%{flavor}" == "test"
|
|
|
|
%define psuffix -test
|
|
|
|
%bcond_without test
|
|
|
|
%else
|
|
|
|
%define psuffix %{nil}
|
|
|
|
%bcond_with test
|
|
|
|
%endif
|
2021-11-19 12:51:34 +01:00
|
|
|
|
|
|
|
%if 0%{?suse_version} > 1500
|
|
|
|
%bcond_without libalternatives
|
|
|
|
%else
|
|
|
|
%bcond_with libalternatives
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%{?!python_module:%define python_module() python3-%{**}}
|
2020-05-24 09:52:13 +02:00
|
|
|
%define skip_python2 1
|
2021-04-09 11:23:59 +02:00
|
|
|
Name: python-nbclient%{psuffix}
|
2022-01-15 20:33:25 +01:00
|
|
|
Version: 0.5.10
|
2020-02-24 18:58:04 +01:00
|
|
|
Release: 0
|
|
|
|
Summary: A client library for executing notebooks
|
|
|
|
License: BSD-3-Clause
|
|
|
|
URL: https://github.com/jupyter/nbclient
|
|
|
|
Source: https://files.pythonhosted.org/packages/source/n/nbclient/nbclient-%{version}.tar.gz
|
2022-01-15 20:33:25 +01:00
|
|
|
BuildRequires: %{python_module base >= 3.7}
|
2020-02-24 18:58:04 +01:00
|
|
|
BuildRequires: %{python_module setuptools >= 38.6.0}
|
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: python-rpm-macros
|
2020-09-05 22:12:53 +02:00
|
|
|
Requires: python-jupyter-client >= 6.1.5
|
2020-02-24 18:58:04 +01:00
|
|
|
Requires: python-nbformat >= 5.0
|
2020-06-09 11:07:48 +02:00
|
|
|
Requires: python-nest-asyncio
|
2020-02-24 18:58:04 +01:00
|
|
|
Requires: python-traitlets >= 4.2
|
2021-11-19 12:51:34 +01:00
|
|
|
%if %{with libalternatives}
|
|
|
|
Requires: alts
|
|
|
|
BuildRequires: alts
|
|
|
|
%else
|
2021-11-14 15:08:14 +01:00
|
|
|
Requires(post): update-alternatives
|
|
|
|
Requires(postun):update-alternatives
|
2021-11-19 12:51:34 +01:00
|
|
|
%endif
|
2020-02-24 18:58:04 +01:00
|
|
|
BuildArch: noarch
|
2021-04-01 12:21:32 +02:00
|
|
|
%if %{with test}
|
2022-01-15 20:33:25 +01:00
|
|
|
BuildRequires: %{python_module ipykernel}
|
2020-05-24 09:52:13 +02:00
|
|
|
BuildRequires: %{python_module ipython}
|
2022-01-15 20:33:25 +01:00
|
|
|
BuildRequires: %{python_module ipywidgets < 8}
|
|
|
|
BuildRequires: %{python_module nbclient = %{version}}
|
2020-02-24 18:58:04 +01:00
|
|
|
BuildRequires: %{python_module pytest >= 4.1}
|
|
|
|
BuildRequires: %{python_module xmltodict}
|
2021-04-01 12:21:32 +02:00
|
|
|
%endif
|
2020-02-24 18:58:04 +01:00
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
%description
|
|
|
|
A client library for executing notebooks. Formally nbconvert's
|
|
|
|
ExecutePreprocessor.
|
|
|
|
|
|
|
|
NBClient is a tool for parameterizing andexecuting Jupyter Notebooks.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n nbclient-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%python_build
|
|
|
|
|
2021-04-01 12:21:32 +02:00
|
|
|
%if ! %{with test}
|
2020-02-24 18:58:04 +01:00
|
|
|
%install
|
|
|
|
%python_install
|
2021-11-14 15:08:14 +01:00
|
|
|
%python_clone -a %{buildroot}%{_bindir}/jupyter-execute
|
2020-02-24 18:58:04 +01:00
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
2021-04-01 12:21:32 +02:00
|
|
|
%endif
|
2020-02-24 18:58:04 +01:00
|
|
|
|
2021-04-01 12:21:32 +02:00
|
|
|
%if %{with test}
|
2020-02-24 18:58:04 +01:00
|
|
|
%check
|
2021-09-22 16:57:58 +02:00
|
|
|
export IPYKERNEL_CELL_NAME="<IPY-INPUT>"
|
2021-11-21 18:30:59 +01:00
|
|
|
# tests on parallel notebooks randomly fail (4 tests) - https://github.com/jupyter/nbclient/pull/74#issuecomment-635929953
|
2022-01-15 21:26:28 +01:00
|
|
|
%pytest -k 'not parallel_notebooks'
|
2021-04-01 12:21:32 +02:00
|
|
|
%endif
|
2020-02-24 18:58:04 +01:00
|
|
|
|
2021-04-01 12:21:32 +02:00
|
|
|
%if ! %{with test}
|
2021-11-19 12:51:34 +01:00
|
|
|
%pre
|
|
|
|
%python_libalternatives_reset_alternative jupyter-execute
|
|
|
|
|
2021-11-14 15:08:14 +01:00
|
|
|
%post
|
|
|
|
%python_install_alternative jupyter-execute
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%python_uninstall_alternative jupyter-execute
|
|
|
|
|
2020-02-24 18:58:04 +01:00
|
|
|
%files %{python_files}
|
|
|
|
%doc CHANGELOG.md README.md
|
|
|
|
%license LICENSE
|
2021-11-14 15:08:14 +01:00
|
|
|
%python_alternative %{_bindir}/jupyter-execute
|
2020-05-24 09:52:13 +02:00
|
|
|
%{python_sitelib}/nbclient
|
2021-11-14 15:08:14 +01:00
|
|
|
%{python_sitelib}/nbclient-%{version}*-info/
|
2021-04-01 12:21:32 +02:00
|
|
|
%endif
|
2020-02-24 18:58:04 +01:00
|
|
|
|
|
|
|
%changelog
|