From 011d7cc08300fa0fb92de7cb47586fcbb4b88ffb Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Mon, 17 Aug 2026 21:16:10 +0200 Subject: 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 Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-science.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'gnu/packages/python-science.scm') diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 0c65b0ca551..caece990788 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") -- cgit v1.2.3