# Tests need network access and credentials for a real Kubernetes cluster %bcond tests 0 Name: python-snakemake-executor-plugin-kubernetes Version: 0.1.4 Release: %autorelease Summary: A snakemake executor plugin for submission of jobs to Kubernetes # SPDX License: MIT URL: https://github.com/snakemake/snakemake-executor-plugin-kubernetes # We use the GitHub archive instead of the PyPI sdist to get CHANGELOG.md and # the tests. Source: %{url}/archive/v%{version}/snakemake-executor-plugin-kubernetes-%{version}.tar.gz # Allow kubernetes versions 28 and 29 # https://github.com/snakemake/snakemake-executor-plugin-kubernetes/pull/10 # # We suggested that upstream might suggest removing the upper bound on the # version of this dependency entirely. Even if upstream chooses not to, we # might remove the upper bound downstream in the future. Patch: %{url}/pull/10.patch BuildArch: noarch BuildRequires: python3-devel # See: [tool.poetry.dev-dependencies] in pyproject.toml BuildRequires: snakemake >= 8 %if %{with tests} BuildRequires: %{py3_dist pytest} BuildRequires: %{py3_dist snakemake-storage-plugin-s3} %endif %global common_description %{expand: %{summary}.} %description %{common_description} %package -n python3-snakemake-executor-plugin-kubernetes Summary: %{summary} %description -n python3-snakemake-executor-plugin-kubernetes %{common_description} %prep %autosetup -n snakemake-executor-plugin-kubernetes-%{version} %generate_buildrequires %pyproject_buildrequires %build %pyproject_wheel %install %pyproject_install %pyproject_save_files snakemake_executor_plugin_kubernetes %check %pyproject_check_import %if %{with tests} %pytest -v tests/tests.py %endif %files -n python3-snakemake-executor-plugin-kubernetes -f %{pyproject_files} %license LICENSE %doc CHANGELOG.md %doc README.md %changelog %autochangelog