guix_mirror_bot pushed a commit to branch master
in repository guix.
commit b0df17434809cafea8c62c5729e85a50abf5e879
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Aug 17 21:19:39 2026 +0200
gnu: Add python-snakemake-software-deployment-plugin-container.
* gnu/packages/python-science.scm
(python-snakemake-software-deployment-plugin-container): New variable.
Relates-to: guix/guix!10625
Reviewed-by: Hugo Buddelmeijer <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-science.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 8ab71d8847..23653771d9 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -74,6 +74,7 @@
#:use-module (gnu packages crypto)
#:use-module (gnu packages databases)
#:use-module (gnu packages digest)
+ #:use-module (gnu packages docker)
#:use-module (gnu packages duckdb)
#:use-module (gnu packages elf)
#:use-module (gnu packages gcc)
@@ -6040,6 +6041,37 @@ that utilizes @code{python-rich} for enhanced terminal
styling and
progress bars.")
(license license:expat)))
+(define-public python-snakemake-software-deployment-plugin-container
+ (package
+ (name "python-snakemake-software-deployment-plugin-container")
+ (version "0.6.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url (string-append "https://github.com/snakemake/"
+
"snakemake-software-deployment-plugin-container"))
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0izkmnr89cfd085z99bp4yf57djppb462n6k04fhi2k5mk93mzlm"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ ;; Tests require network access.
+ #:tests? #f))
+ (propagated-inputs
+ (list python-snakemake-interface-common
+ python-snakemake-interface-software-deployment-plugins
+ python-udocker))
+ (native-inputs (list python-hatchling python-pytest))
+ (home-page (string-append "https://github.com/snakemake/"
+
"snakemake-software-deployment-plugin-container"))
+ (synopsis "Run Snakemake within a rootless container")
+ (description "This package provides a generic container plugin
+implementing snakemake's software-deployment interface.")
+ (license license:expat)))
+
(define-public python-sparse
(package
(name "python-sparse")