# We can’t run tests that access the network in koji, but this build # conditional allows us to try them in local mock builds for added confidence: # fedpkg mockbuild --enable-network --with network_tests %bcond network_tests 0 Name: python-snakemake-storage-plugin-http Version: 0.2.3 Release: %autorelease Summary: Snakemake storage plugin for downloading input files from HTTP(s) # SPDX License: MIT URL: https://github.com/snakemake/snakemake-storage-plugin-http # We use the GitHub archive instead of the PyPI sdist to get CHANGELOG.md and # the tests. Source: %{url}/archive/v%{version}/snakemake-storage-plugin-http-%{version}.tar.gz # Fix typo in description, donwload/download # https://github.com/snakemake/snakemake-storage-plugin-http/pull/16 Patch: %{url}/pull/16.patch # Downstream-only: allow slightly older requests library # # Loosen the minimum version from 2.31.0 to 2.28.2. We believe upstream # preemptively required the latest version (which does have important bug # fixes), but the package is not *incompatible* with other versions; this can # be removed after Fedora’s python-requests package is up to date, # https://src.fedoraproject.org/rpms/python-requests/pull-request/29. Patch: 0001-Downstream-only-allow-slightly-older-requests-librar.patch BuildArch: noarch BuildRequires: python3-devel # See: [tool.poetry.dev-dependencies] in pyproject.toml BuildRequires: %{py3_dist pytest} BuildRequires: snakemake >= 8 %global common_description %{expand: %{summary}.} %description %{common_description} %package -n python3-snakemake-storage-plugin-http Summary: %{summary} %description -n python3-snakemake-storage-plugin-http %{common_description} %prep %autosetup -n snakemake-storage-plugin-http-%{version} -p1 %generate_buildrequires %pyproject_buildrequires %build %pyproject_wheel %install %pyproject_install %pyproject_save_files snakemake_storage_plugin_http %check # Just in case the tests are not very thorough: %pyproject_check_import %if %{without network_tests} # The following tests require network access: k="${k-}${k+ and }not (TestStorageNoSettings and test_storage)" k="${k-}${k+ and }not (TestStorageNoSettings and test_storage_not_existing)" k="${k-}${k+ and }not (TestStorageNoSettings and test_inventory)" %endif %pytest -v -k "${k-}" tests/tests.py %files -n python3-snakemake-storage-plugin-http -f %{pyproject_files} %license LICENSE %doc CHANGELOG.md %doc README.md %changelog %autochangelog