guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 011d7cc08300fa0fb92de7cb47586fcbb4b88ffb
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Aug 17 21:16:10 2026 +0200
gnu: Add python-snakemake-interface-logger-plugins.
* gnu/packages/python-science.scm
(python-snakemake-interface-logger-plugins): New variable.
Relates-to: guix/guix!10625
Reviewed-by: Hugo Buddelmeijer <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-science.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 0c65b0ca55..caece99078 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -5836,6 +5836,37 @@ for Snakemake and its plugins.")
its executor plugins.")
(license license:expat)))
+(define-public python-snakemake-interface-logger-plugins
+ (package
+ (name "python-snakemake-interface-logger-plugins")
+ (version "2.0.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url (string-append "https://github.com/snakemake/"
+ "snakemake-interface-logger-plugins"))
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "138z6i810v374h27gj9jxg5jwdz6ccyirgv2f2l313j1iivj7wfa"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:test-flags #~(list "tests/tests.py")))
+ (propagated-inputs (list python-snakemake-interface-common))
+ (native-inputs
+ (list python-hatchling
+ python-snakemake-logger-plugin-rich
+ python-pytest))
+ (home-page (string-append "https://github.com/snakemake/"
+ "python-snakemake-interface-logger-plugins"))
+ (synopsis "Interface for Snakemake logger plugins")
+ (description
+ "This package provides a stable interface for interactions between
Snakemake and
+its logger plugins.")
+ (license license:expat)))
+
(define-public python-snakemake-interface-report-plugins
(package
(name "python-snakemake-interface-report-plugins")