From b81d96ac95adb0b79228de64cce2fc11fa49d172 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 16 Jan 2025 14:27:38 +0000 Subject: [PATCH] gnu: Remove python-pytest-lazy-fixture. Failed to build, have no users in Guix, not maintained for 3 years. See . * gnu/packages/check.scm (python-pytest-lazy-fixture): Delete variable. Change-Id: Icce5010704f20a5530ff9fd702e5c0cc694cc0ec --- gnu/packages/check.scm | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 11cdf895048114dad71f07146b49dd463e8f57db..588336794c61d8054cc01b26894b45ec6012c164 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -1986,33 +1986,6 @@ Python's @code{random.seed}.") @file{setup.py} files can use to run tests.") (license license:expat))) -(define-public python-pytest-lazy-fixture - (package - (name "python-pytest-lazy-fixture") - (version "0.6.3") - (source - (origin - (method url-fetch) - (uri (pypi-uri "pytest-lazy-fixture" version)) - (sha256 - (base32 "1b0hmnsxw4s2wf9pks8dg6dfy5cx3zcbzs8517lfccxsfizhqz8f")))) - (build-system python-build-system) - (arguments - '(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key inputs outputs #:allow-other-keys) - ;; Make the installed plugin discoverable by Pytest. - (add-installed-pythonpath inputs outputs) - (invoke "pytest" "-vv")))))) - (propagated-inputs - (list python-pytest)) - (home-page "https://github.com/tvorog/pytest-lazy-fixture") - (synopsis "Use fixtures in @code{pytest.mark.parametrize}") - (description "This plugin helps to use fixtures in -@code{pytest.mark.parametrize}.") - (license license:expat))) - (define-public python-pytest-lazy-fixtures (package (name "python-pytest-lazy-fixtures")