guix_mirror_bot pushed a commit to branch master
in repository guix.
commit ae31ac80f7f4c7a66800ab6c78c432e368a22cea
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Aug 17 21:19:46 2026 +0200
gnu: Add python-snakemake-software-deployment-plugin-envmodules.
* gnu/packages/python-science.scm
(python-snakemake-software-deployment-plugin-envmodules): 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 | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 23653771d9..167b11f680 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -6072,6 +6072,37 @@ progress bars.")
implementing snakemake's software-deployment interface.")
(license license:expat)))
+(define-public python-snakemake-software-deployment-plugin-envmodules
+ (package
+ (name "python-snakemake-software-deployment-plugin-envmodules")
+ (version "0.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url (string-append "https://github.com/snakemake/"
+
"snakemake-software-deployment-plugin-envmodules"))
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1764502r8vqg3k61wjc81rfi5v89rxj0njhpcfynxxx82rnda0vv"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:test-backend #~'custom
+ #:test-flags #~(list "tests/test_plugin.py")))
+ (propagated-inputs
+ (list python-snakemake-interface-common
+ python-snakemake-interface-software-deployment-plugins))
+ (native-inputs (list python-hatchling python-pytest))
+ (home-page (string-append "https://github.com/snakemake/"
+
"snakemake-software-deployment-plugin-envmodules"))
+ (synopsis "Environment modules plugin for Snakemake")
+ (description
+ "This package provides a software deployment plugin for Snakemake
+using environment modules.")
+ (license license:expat)))
+
(define-public python-sparse
(package
(name "python-sparse")