forked from pool/python-QtPy
- Add also BuildRequires for qt3d-qt5 and qtdatavis3d-qt5 so those tests are not skipped. - qtcharts-qt5 is not added because the python-qt5 package is always pulled in automatically and QtPy uses it by default while QtCharts is only available with PySide2. - Replace the Requires with Recommends since not even PyQt is really required (PySide2 can also be used with QtPy, and is now added as a Suggested package). - Rename QtDatavisualization.py to QtDataVisualization.py (uppercase v) to fix the test which was skipped because the imported module didn't exist and to keep the name consistent with both PyQt and PySide2 (gh#spyder-ide/qtpy#228) OBS-URL: https://build.opensuse.org/request/show/863063 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-QtPy?expand=0&rev=26
90 lines
2.8 KiB
RPMSpec
90 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package python-QtPy
|
|
#
|
|
# Copyright (c) 2021 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/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-QtPy
|
|
Version: 1.9.0
|
|
Release: 0
|
|
Summary: Abstraction layer on top of Qt bindings
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/spyder-ide/qtpy
|
|
Source: https://files.pythonhosted.org/packages/source/Q/QtPy/QtPy-%{version}.tar.gz
|
|
BuildRequires: %{python_module qt3d-qt5}
|
|
BuildRequires: %{python_module qt5}
|
|
BuildRequires: %{python_module qtdatavis3d-qt5}
|
|
BuildRequires: %{python_module qtwebengine-qt5}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Recommends: python-qt3d-qt5
|
|
Recommends: python-qt5
|
|
Recommends: python-qtdatavis3d-qt5
|
|
Recommends: python-qtwebengine-qt5
|
|
Suggests: python-pyside2
|
|
BuildArch: noarch
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module mock}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: xvfb-run
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
QtPy (pronounced 'cutie pie') is a small abstraction layer that lets you
|
|
write applications using a single api call to either PyQt or PySide.
|
|
|
|
It provides support for PyQt5, PyQt4 and PySide using the PyQt5 layout (where
|
|
the QtGui module has been split into QtGui and QtWidgets).
|
|
|
|
Basically, you write your code as if you were using PyQt5 but import qt from
|
|
`qtpy` instead of `PyQt5`.
|
|
|
|
%prep
|
|
%setup -q -n QtPy-%{version}
|
|
sed -i 's/\r$//' LICENSE.txt
|
|
rm qtpy/tests/runtests.py
|
|
# Submitted to upstream at gh#spyder-ide/qtpy#228
|
|
mv qtpy/QtDatavisualization.py qtpy/QtDataVisualization.py
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
export QT_HASH_SEED=0
|
|
export PYTHONDONTWRITEBYTECODE=1
|
|
mkdir empty
|
|
pushd empty
|
|
%{python_expand # pytest-xvfb unfortunately fails here
|
|
export PYTHONPATH=%{buildroot}%{$python_sitelib}
|
|
xvfb-run --server-args="-screen 0 1920x1080x24" pytest-%{$python_bin_suffix} -v ../qtpy/tests/
|
|
}
|
|
popd
|
|
|
|
%files %{python_files}
|
|
%doc AUTHORS.md CHANGELOG.md README.md
|
|
%license LICENSE.txt
|
|
%{python_sitelib}/qtpy
|
|
%{python_sitelib}/QtPy-%{version}-py*.egg-info
|
|
|
|
%changelog
|