2024-05-03 21:01:23 +02:00
|
|
|
#
|
2024-09-25 17:14:31 +02:00
|
|
|
# spec file for package python-hypothesmith
|
2024-05-03 21:01:23 +02:00
|
|
|
#
|
2024-09-25 17:14:31 +02:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2024-05-03 21:01:23 +02: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/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
|
|
%if "%{flavor}" == "test"
|
|
|
|
%define psuffix -test
|
|
|
|
%bcond_without test
|
|
|
|
%else
|
|
|
|
%define psuffix %{nil}
|
|
|
|
%bcond_with test
|
|
|
|
%endif
|
|
|
|
Name: python-hypothesmith%{psuffix}
|
2024-09-25 17:14:31 +02:00
|
|
|
Version: 0.3.3
|
2024-05-03 21:01:23 +02:00
|
|
|
Release: 0
|
|
|
|
Summary: Hypothesis strategies for generating Python programs, something like CSmith
|
|
|
|
License: MPL-2.0
|
|
|
|
URL: https://github.com/Zac-HD/hypothesmith
|
|
|
|
Source: https://files.pythonhosted.org/packages/source/h/hypothesmith/hypothesmith-%{version}.tar.gz
|
2024-09-25 17:14:31 +02:00
|
|
|
BuildRequires: %{python_module base >= 3.8}
|
2024-05-03 21:01:23 +02:00
|
|
|
BuildRequires: %{python_module setuptools}
|
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: python-rpm-macros
|
|
|
|
Requires: python-base >= 3.7
|
2024-09-25 17:14:31 +02:00
|
|
|
Requires: python-hypothesis >= 6.93.0
|
2024-05-03 21:01:23 +02:00
|
|
|
Requires: python-lark >= 0.10.1
|
|
|
|
Requires: python-libcst >= 0.4.0
|
|
|
|
%if %{with test}
|
|
|
|
BuildRequires: %{python_module black}
|
|
|
|
BuildRequires: %{python_module exceptiongroup}
|
2024-09-25 17:14:31 +02:00
|
|
|
BuildRequires: %{python_module hypothesis >= 6.93.0}
|
2024-05-03 21:01:23 +02:00
|
|
|
BuildRequires: %{python_module lark >= 0.10.1}
|
|
|
|
BuildRequires: %{python_module libcst >= 0.4.0}
|
|
|
|
BuildRequires: %{python_module parso}
|
|
|
|
BuildRequires: %{python_module pytest-xdist}
|
|
|
|
BuildRequires: %{python_module pytest}
|
|
|
|
%endif
|
|
|
|
BuildArch: noarch
|
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
%description
|
|
|
|
Hypothesis strategies for generating Python programs, something like CSmith.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n hypothesmith-%{version}
|
|
|
|
# remove pytest coverage opts
|
|
|
|
rm tox.ini
|
|
|
|
|
|
|
|
%build
|
|
|
|
%if !%{with test}
|
|
|
|
%python_build
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%install
|
|
|
|
%if !%{with test}
|
|
|
|
%python_install
|
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%check
|
|
|
|
%if %{with test}
|
|
|
|
# multibuild: test the source dir, nothing is installed
|
|
|
|
export PYTHONPATH=$(pwd)/src
|
|
|
|
%pytest -n auto
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if !%{with test}
|
|
|
|
%files %{python_files}
|
|
|
|
%doc README.md CHANGELOG.md
|
|
|
|
%license LICENSE
|
|
|
|
%{python_sitelib}/hypothesmith
|
|
|
|
%{python_sitelib}/hypothesmith-%{version}-py*.egg-info
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%changelog
|