guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 81a8fa9dc14a17757d2a29d8f59542e60ed816d3 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Thu Jul 17 16:54:26 2025 +0100
gnu: python-pytest-enabler: Update to 3.4.0. * gnu/packages/check.scm (python-pytest-enabler): Update to 3.4.0. [arguments] <tests?>: 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 080d3523c4..37c05aab34 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -2950,29 +2950,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")