[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#76835] [PATCH v3 32/40] gnu: Add python-snakemake-interface-storage
From: |
Nicolas Graves |
Subject: |
[bug#76835] [PATCH v3 32/40] gnu: Add python-snakemake-interface-storage-plugins. |
Date: |
Mon, 10 Mar 2025 03:16:37 +0100 |
* gnu/packages/python-science.scm
(python-snakemake-interface-storage-plugins): New variable.
---
gnu/packages/python-science.scm | 34 +++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 3ac753f55e..ac16401254 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -1060,6 +1060,40 @@ (define-public
python-snakemake-interface-software-deployment-plugins
its software deployment plugins.")
(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 "\
+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 ;XXX: 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
+ "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
(package
(name "python-tdda")
--
2.48.1
- [bug#76835] [PATCH v3 15/40] gnu: Remove python-sphinx-4., (continued)
- [bug#76835] [PATCH v3 15/40] gnu: Remove python-sphinx-4., Nicolas Graves, 2025/03/09
- [bug#76835] [PATCH v3 23/40] gnu: python-louvain: Use pyproject-build-system., Nicolas Graves, 2025/03/09
- [bug#76835] [PATCH v3 29/40] gnu: Add python-snakemake-interface-executor-plugins., Nicolas Graves, 2025/03/09
- [bug#76835] [PATCH v3 37/40] gnu: python-ratelimiter: Update to 1.2.0-0.da78a45., Nicolas Graves, 2025/03/09
- [bug#76835] [PATCH v3 30/40] gnu: Add python-snakemake-interface-report-plugins., Nicolas Graves, 2025/03/09
- [bug#76835] [PATCH v3 34/40] gnu: Add python-reretry., Nicolas Graves, 2025/03/09
- [bug#76835] [PATCH v3 19/40] gnu: gdal: Update to 3.10.2., Nicolas Graves, 2025/03/09
- [bug#76835] [PATCH v3 24/40] gnu: Remove python-setuptools-57., Nicolas Graves, 2025/03/09
- [bug#76835] [PATCH v3 36/40] gnu: Add snakemake., Nicolas Graves, 2025/03/09
- [bug#76835] [PATCH v3 18/40] gnu: python-pyvcf: Rename package to python-pyvcf3., Nicolas Graves, 2025/03/09
- [bug#76835] [PATCH v3 32/40] gnu: Add python-snakemake-interface-storage-plugins.,
Nicolas Graves <=
- [bug#76835] [PATCH v3 31/40] gnu: Add python-snakemake-interface-software-deployment-plugins., Nicolas Graves, 2025/03/09
- [bug#76835] [PATCH v3 38/40] gnu: snakemake-7: Move to (gnu packages python-science)., Nicolas Graves, 2025/03/09
- [bug#76835] [PATCH v3 40/40] gnu: Remove snakemake., Nicolas Graves, 2025/03/09
- [bug#76835] [PATCH v3 39/40] gnu: snakemake-6: Move to (gnu packages python-science)., Nicolas Graves, 2025/03/09
- [bug#76835] [PATCH python-team 00/15] Some further python fixes, Sharlatan Hellseher, 2025/03/12