diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-03-10 03:16:34 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:35 +0200 |
commit | ef1180807c0a1ef4a992c603054ebf1728a72005 (patch) | |
tree | 78d2b68653638afd5bd9ea28b2c063e1f7fa777b | |
parent | 18ef23a5ad858af341757b7b65acc9588853e6a9 (diff) | |
download | guix-ef1180807c0a1ef4a992c603054ebf1728a72005.tar.gz guix-ef1180807c0a1ef4a992c603054ebf1728a72005.zip |
gnu: Add python-snakemake-interface-executor-plugins.
* gnu/packages/python-science.scm
(python-snakemake-interface-executor-plugins): New variable.
Change-Id: I6bd9c6aec7293b8412c20dac04f82d867400d71c
Signed-off-by: Steve George <steve@futurile.net>
-rw-r--r-- | gnu/packages/python-science.scm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 9b9453c997..c582121b68 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -1095,6 +1095,41 @@ cross-validation.") for Snakemake and its plugins.") (license license:expat))) +(define-public python-snakemake-interface-executor-plugins + (package + (name "python-snakemake-interface-executor-plugins") + (version "9.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url (string-append "https://github.com/snakemake/" + "snakemake-interface-executor-plugins")) + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kjjcgkk1rbavb687x5ayw35ayhsnhpg9262k317x911wqpsj2fm")))) + (build-system pyproject-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "python3" "tests/tests.py"))))))) + (propagated-inputs (list python-argparse-dataclass + python-snakemake-interface-common + python-throttler)) + (native-inputs (list python-poetry-core python-pytest)) + (home-page (string-append "https://github.com/snakemake/" + "python-snakemake-interface-executor-plugins")) + (synopsis "Interface for Snakemake executor plugins") + (description + "This package provides a stable interface for interactions between Snakemake and +its executor plugins.") + (license license:expat))) + (define-public python-tdda (package (name "python-tdda") |