python-jupyter-client/jupyter-client.spec
li-miaomiao_zhr 7465b40aa4 init package
2023-08-03 17:18:59 +08:00

60 lines
1.8 KiB
RPMSpec

%global _empty_manifest_terminate_build 0
%global pypi_name jupyter-client
Name: python-%{pypi_name}
Version: 8.3.0
Release: 1
Summary: Jupyter protocol implementation and client libraries.
License: BSD-3-Clause
URL: https://github.com/jupyter/jupyter_client
Source0: %{url}/archive/%{version}/jupyter_client-%{version}.tar.gz
BuildArch: noarch
Patch0: 0001-fix-Illegal-char.patch
# Base Requires
BuildRequires: python3-setuptools
BuildRequires: python3-hatchling
BuildRequires: python3-pip
BuildRequires: python3-wheel
BuildRequires: python3-devel
BuildRequires: python3-setuptools_scm
%description
This package contains the reference implementation of the Jupyter protocol.
It also provides client and kernel management APIs for working with kernels.
It also provides the `jupyter kernelspec` entrypoint for installing kernelspecs
for use with Jupyter frontends.
%package -n python3-%{pypi_name}
Summary: Jupyter protocol implementation and client libraries.
BuildArch: noarch
%{?python_provide:%python_provide python3-%{pypi_name}}
%description -n python3-%{pypi_name}
This package contains the reference implementation of the Jupyter protocol.
It also provides client and kernel management APIs for working with kernels.
It also provides the `jupyter kernelspec` entrypoint for installing kernelspecs
for use with Jupyter frontends.
%prep
%autosetup -n jupyter_client-%{version} -p1
%build
%pyproject_build
%install
%pyproject_install
%files -n python3-%{pypi_name}
%doc README.md
%license LICENSE
%{_bindir}/jupyter-kernel
%{_bindir}/jupyter-kernelspec
%{_bindir}/jupyter-run
%{python3_sitelib}/jupyter_client-8.3.0.dist-info/
%{python3_sitelib}/jupyter_client/
%changelog
* Thu Jul 13 2023 li-miaomiao_zhr <mmlidc@isoftstone.com> - 8.3.0-1
- Package init