1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: python-aiosignal: Remove python-pytest-cov requirement.

* gnu/packages/python-web.scm (python-aiosignal)
[arguments]<#:phases>: Add phase 'avoid-pytest-cov-preload.
[native-inputs]: Remove python-pytest-cov, python-wheel.

Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves
2025-10-28 20:29:25 +01:00
committed by Sharlatan Hellseher
parent 3c455915ed
commit 3a9b85ce6e

View File

@@ -2242,12 +2242,18 @@ for AsyncIO and mixed-type iterables.")
(sha256
(base32 "1isin9bp256scp59lbr35h48nw5p5i84b6f9kh1c50w08vcyqzpl"))))
(build-system pyproject-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'avoid-pytest-cov-preload
(lambda _
(substitute* "pytest.ini"
(("-p pytest_cov") "")))))))
(native-inputs
(list python-pytest
python-pytest-asyncio
python-pytest-cov
python-setuptools
python-wheel))
python-setuptools))
(propagated-inputs
(list python-frozenlist))
(home-page "https://github.com/aio-libs/aiosignal")