From 64b61ef05d64d0645627c012e1ba052156e6ebff Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 31 Oct 2025 14:22:42 +0000 Subject: [PATCH] gnu: python-aioitertools: Reduce closure size, enable tests. * gnu/packages/python-web.scm (python-aioitertools): [arguments] : Enable. : Use 'custom. [propagated-inputs]: Remove python-typing-extensions. [native-inputs]: Remove python-coverage, python-flake8, python-mypy, python-pytest, python-pytest-asyncio, and python-sphinx. Change-Id: Id6a02edb958053e5e62fb07054de8f2716096598 --- gnu/packages/python-web.scm | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 73ae9507247840afd5989390c6388038f15e1d60..90da28eb4a275d20b37bdc78b037d7b3fe6c9604 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1904,17 +1904,11 @@ DNS name.") (sha256 (base32 "0syxv2r90d6410hc68jxhk610pdgx19n1n5rc7shaxxv9xdhbaf2")))) (build-system pyproject-build-system) - ;; Curiously, no tests are collected although they exist. - (arguments (list #:tests? #false)) - (propagated-inputs (list python-typing-extensions)) + (arguments + (list #:test-backend #~'custom + #:test-flags #~(list "-m" "aioitertools.tests"))) (native-inputs - (list python-coverage - python-flake8 - python-flit-core - python-mypy - python-pytest - python-pytest-asyncio - python-sphinx)) + (list python-flit-core)) (home-page "https://pypi.org/project/aioitertools/") (synopsis "Itertools and builtins for AsyncIO and mixed iterables") (description