mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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>
This commit is contained in:
parent
18ef23a5ad
commit
ef1180807c
1 changed files with 35 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue