mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-snakemake-interface-software-deployment-plugins.
* gnu/packages/python-science.scm (python-snakemake-interface-software-deployment-plugins): New variable. Change-Id: Ia3f6beed3a3ea02607645ca127be52f328b429bb Signed-off-by: Steve George <steve@futurile.net>
This commit is contained in:
parent
499eda24b3
commit
b6c69075cb
1 changed files with 34 additions and 0 deletions
|
@ -1163,6 +1163,40 @@ its executor plugins.")
|
||||||
between Snakemake and its report plugins.")
|
between Snakemake and its report plugins.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-snakemake-interface-software-deployment-plugins
|
||||||
|
(package
|
||||||
|
(name "python-snakemake-interface-software-deployment-plugins")
|
||||||
|
(version "0.6.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url (string-append "https://github.com/snakemake/"
|
||||||
|
"snakemake-interface-software-deployment-plugins"))
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0b4kkznfyfck9f92pkimhyl13ljisfn67rsilm1a5inq2ywpmxba"))))
|
||||||
|
(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))
|
||||||
|
(native-inputs (list python-poetry-core))
|
||||||
|
(home-page (string-append "https://github.com/snakemake/"
|
||||||
|
"snakemake-interface-software-deployment-plugins"))
|
||||||
|
(synopsis "Interface for Snakemake software deployment plugins")
|
||||||
|
(description
|
||||||
|
"This package provides a stable interface for interactions between Snakemake and
|
||||||
|
its software deployment plugins.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-tdda
|
(define-public python-tdda
|
||||||
(package
|
(package
|
||||||
(name "python-tdda")
|
(name "python-tdda")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue