diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-22 11:44:00 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:23:28 +0000 |
commit | f35a8c24164ac3d92a45695a20b2a88645eceb04 (patch) | |
tree | a052875a162cecc398a865848a5b327469a425ac /gnu | |
parent | e5a81b3f9f6d5328cf063f4ad6197db3c07ecdc2 (diff) | |
download | guix-f35a8c24164ac3d92a45695a20b2a88645eceb04.tar.gz guix-f35a8c24164ac3d92a45695a20b2a88645eceb04.zip |
gnu: Remove python-pytest-catchlog.
It's unmaintained for 7y, failing to build and not in use by any other
packages in Guix.
* gnu/packages/check.scm (python-pytest-catchlog): Delete variable.
Change-Id: Ia16c03a965d7b6fc493e950b41cdbc3a8898c1f2
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/check.scm | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 83996f5e6b..13aabb577c 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -3276,29 +3276,6 @@ pytest report.") "Python-pytest-catchlog is a pytest plugin to catch log messages.") (license license:expat))) -(define-public python-pytest-catchlog - (package - (name "python-pytest-catchlog") - (version "1.2.2") - (source - (origin - (method url-fetch) - (uri (pypi-uri "pytest-catchlog" version ".zip")) - (sha256 - (base32 - "1w7wxh27sbqwm4jgwrjr9c2gy384aca5jzw9c0wzhl0pmk2mvqab")))) - (build-system python-build-system) - (native-inputs - (list unzip)) - (propagated-inputs - (list python-pytest)) - (home-page "https://github.com/eisensheng/pytest-catchlog") - (synopsis "Pytest plugin to catch log messages") - (description - "Python-pytest-catchlog is a pytest plugin to catch log messages. This is -a fork of pytest-capturelog.") - (license license:expat))) - (define-public python-nosexcover (package (name "python-nosexcover") |