File python-iminuit.spec of Package python-iminuit
#
# spec file for package python-iminuit
#
# Copyright (c) 2024 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/
#
%{?sle15_python_module_pythons}
Name: python-iminuit
Version: 2.28.0
Release: 0
Summary: Python bindings for MINUIT2
License: MIT
URL: https://github.com/scikit-hep/iminuit
Source0: https://files.pythonhosted.org/packages/source/i/iminuit/iminuit-%{version}.tar.gz
BuildRequires: %{python_module Cython}
BuildRequires: %{python_module devel >= 3.9}
BuildRequires: %{python_module numpy >= 1.21.0}
BuildRequires: %{python_module numpy-devel}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pybind11 >= 2.9.0}
BuildRequires: %{python_module pybind11-devel}
BuildRequires: %{python_module scikit-build-core-pyproject >= 0.3.0}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: cmake >= 3.13
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: python-rpm-macros
Requires: python-numpy >= 1.21.0
Recommends: python-matplotlib
Recommends: python-scipy
# SECTION test requirements
BuildRequires: %{python_module ipywidgets if %python-base >= 3.10}
BuildRequires: %{python_module matplotlib}
BuildRequires: %{python_module numba}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module scipy}
BuildRequires: %{python_module tabulate}
# /SECTION
%python_subpackages
%description
iminuit is a Python interface to the MINUIT2 C++ package.
It can be used as a general function minimization method,
but is most commonly used for likelihood fits of models to data,
and to get model parameter error estimates from likelihood profile analysis.
%prep
%setup -q -n iminuit-%{version}
# We use external pybind11, just to be sure remove bundled pybind11 entirely
rm -fr extern/pybind11
%build
export CXXFLAGS="%{optflags}"
export CMAKE_ARGS="-DIMINUIT_EXTERNAL_PYBIND11=ON -DCMAKE_VERBOSE_MAKEFILE=ON"
%pyproject_wheel
%install
%pyproject_install
%{python_expand # remove empty file and dedup
f=%{buildroot}%{$python_sitearch}/iminuit-%{version}.dist-info/entry_points.txt
[ -f $f -a ! -s $f ] && rm $f
%fdupes %{buildroot}%{$python_sitearch}
}
%check
%pytest_arch
%files %{python_files}
%doc README.rst
%license LICENSE
%{python_sitearch}/iminuit/
%{python_sitearch}/iminuit-%{version}.dist-info/
%changelog