From fd65332b048fde2046684a14e6e0e3239774e9c4 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 17 Jul 2025 16:54:26 +0100 Subject: [PATCH] gnu: python-pytest-enabler: Update to 3.4.0. * gnu/packages/check.scm (python-pytest-enabler): Update to 3.4.0. [arguments] : Enable them. [propagated-inputs]: Add python-importlib-resources. [native-inputs]: Remove python-pytest-black, python-pytest-checkdocs, python-pytest-flake8, python-pytest-mypy, and python-types-toml. Change-Id: I5d0ba4ef12ff15e100f4a851a6f10a11bd32b251 --- gnu/packages/check.scm | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 78999dab1d74f673b375779b925817cff445512f..c7bb19d1ec5ac65b778de28917b793c05f0b9ef4 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -2868,29 +2868,24 @@ failures.") (define-public python-pytest-enabler (package (name "python-pytest-enabler") - (version "1.2.1") + (version "3.4.0") (source (origin (method url-fetch) - (uri (pypi-uri "pytest-enabler" version)) + (uri (pypi-uri "pytest_enabler" version)) (sha256 - (base32 "023ymm0r2gpn5q7aikvx567s507j0zk46w41w6gxb69c688zgs73")))) + (base32 "0gxsr0wk8kzf8rqfnhy84yh1zi0b55j76c0m9n006d8q4bzy1v25")))) (build-system pyproject-build-system) - (arguments (list #:tests? #f - #:test-flags '(list "tests"))) + (native-inputs + (list python-pytest + python-pytest-cov + python-setuptools + python-setuptools-scm)) (propagated-inputs - (list python-jaraco-context + (list python-importlib-resources + python-jaraco-context python-jaraco-functools python-toml)) - (native-inputs (list python-pytest - python-pytest-black - python-pytest-checkdocs - python-pytest-cov - python-pytest-flake8 - python-pytest-mypy - python-setuptools - python-setuptools-scm - python-types-toml)) (home-page "https://github.com/jaraco/pytest-enabler") (synopsis "Enable installed pytest plugins") (description "Enable installed pytest plugins")