91 lines
2.8 KiB
RPMSpec
91 lines
2.8 KiB
RPMSpec
#
|
|
# spec file
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
%if "%{flavor}" == "test"
|
|
%define psuffix -test
|
|
%bcond_without test
|
|
%else
|
|
%define psuffix %{nil}
|
|
%bcond_with test
|
|
%endif
|
|
|
|
Name: python-jupyterlab-pygments%{psuffix}
|
|
Version: 0.2.2
|
|
Release: 0
|
|
Summary: Pygments theme for jupyterlab
|
|
License: BSD-3-Clause
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/jupyterlab/jupyterlab_pygments
|
|
Source: https://files.pythonhosted.org/packages/py2.py3/j/jupyterlab-pygments/jupyterlab_pygments-%{version}-py2.py3-none-any.whl
|
|
Source1: https://raw.githubusercontent.com/jupyterlab/jupyterlab_pygments/%{version}/notebooks/Example.ipynb
|
|
BuildRequires: %{python_module base >= 3.7}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: fdupes
|
|
BuildRequires: jupyter-rpm-macros
|
|
BuildRequires: python-rpm-macros
|
|
Requires: jupyter-jupyterlab-pygments = %{version}
|
|
Requires: python-pygments >= 2.4.1
|
|
BuildArch: noarch
|
|
%if %{with test}
|
|
BuildRequires: %{python_module jupyterlab-pygments = %{version}}
|
|
BuildRequires: %{python_module nbval}
|
|
BuildRequires: %{python_module pytest}
|
|
%endif
|
|
%python_subpackages
|
|
|
|
%description
|
|
This package contains a syntax coloring theme for pygments making use
|
|
of the JupyterLab CSS variables.
|
|
|
|
%package -n jupyter-jupyterlab-pygments
|
|
Summary: Pygments theme for jupyterlab -- Jupyterlab extension files
|
|
|
|
%description -n jupyter-jupyterlab-pygments
|
|
This package contains the Jupyterlab extension files for python-jupyterlab-pygments
|
|
|
|
%prep
|
|
%setup -q -c -T
|
|
|
|
%build
|
|
:
|
|
|
|
%if !%{with test}
|
|
%install
|
|
%pyproject_install %{SOURCE0}
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
find %{buildroot}%{_prefix} -path '*/site-packages/jupyterlab_pygments-%{version}.dist-info/LICENSE' -exec cp {} . ';' -quit
|
|
%endif
|
|
|
|
%if %{with test}
|
|
%check
|
|
%pytest --nbval-lax %{SOURCE1}
|
|
%endif
|
|
|
|
%if !%{with test}
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%{python_sitelib}/jupyterlab_pygments
|
|
%{python_sitelib}/jupyterlab_pygments-%{version}.dist-info
|
|
|
|
%files -n jupyter-jupyterlab-pygments
|
|
%{_jupyter_labextensions_dir3}/jupyterlab_pygments
|
|
%endif
|
|
|
|
%changelog
|