mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-snakemake-interface-storage-plugins.
* gnu/packages/python-science.scm (python-snakemake-interface-storage-plugins): New variable. Change-Id: Ie74edfdc2535f7f26f0c6210a274dfc351336129 Signed-off-by: Steve George <steve@futurile.net>
This commit is contained in:
parent
b6c69075cb
commit
5ae21052de
1 changed files with 35 additions and 0 deletions
|
@ -1197,6 +1197,41 @@ between Snakemake and its report plugins.")
|
||||||
its software deployment plugins.")
|
its software deployment plugins.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-snakemake-interface-storage-plugins
|
||||||
|
(package
|
||||||
|
(name "python-snakemake-interface-storage-plugins")
|
||||||
|
(version "3.3.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url (string-append "https://github.com/snakemake/"
|
||||||
|
"snakemake-interface-storage-plugins"))
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "05n5xgwagb01nyzi8xfvp0nvdfl24lxidgksm7k86p68n1rijd5a"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #f ;circular dependency on snakemake
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(invoke "python3" "tests/tests.py")))))))
|
||||||
|
(propagated-inputs (list python-reretry python-snakemake-interface-common
|
||||||
|
python-throttler python-wrapt))
|
||||||
|
(native-inputs (list python-poetry-core python-pytest))
|
||||||
|
(home-page (string-append "https://github.com/snakemake/"
|
||||||
|
"snakemake-interface-storage-plugins"))
|
||||||
|
(synopsis "Interface for Snakemake storage plugins")
|
||||||
|
(description
|
||||||
|
"This package provides a stable interface for interactions between
|
||||||
|
Snakemake and its storage 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