guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 7c4c9e6cb436761c340374d2449c7ea4c550064f
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Aug 17 21:19:53 2026 +0200

    gnu: Add python-snakemake-software-deployment-plugin-envmodules-bootstrap.
    
    * gnu/packages/python-science.scm 
(python-snakemake-software-deployment-plugin-envmodules-bootstrap): 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 | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 167b11f680..45e39268ba 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -6103,6 +6103,20 @@ implementing snakemake's software-deployment interface.")
 using environment modules.")
     (license license:expat)))
 
+(define-public python-snakemake-software-deployment-plugin-envmodules-bootstrap
+  (package/inherit python-snakemake-software-deployment-plugin-envmodules
+    (arguments
+     (substitute-keyword-arguments
+         (package-arguments 
python-snakemake-software-deployment-plugin-envmodules)
+       ((#:tests? tests #t) #f)
+       ((#:phases phases #~%standard-phases)
+        #~(modify-phases #$phases
+            (delete 'sanity-check)))))
+    (propagated-inputs
+     (modify-inputs
+         (package-propagated-inputs 
python-snakemake-software-deployment-plugin-envmodules)
+       (delete "python-snakemake-interface-software-deployment-plugins")))))
+
 (define-public python-sparse
   (package
     (name "python-sparse")

Reply via email to