summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/python-science.scm14
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 167b11f680d..45e39268ba8 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -6103,6 +6103,20 @@ implementing snakemake's software-deployment interface.")
6103using environment modules.") 6103using environment modules.")
6104 (license license:expat))) 6104 (license license:expat)))
6105 6105
6106(define-public python-snakemake-software-deployment-plugin-envmodules-bootstrap
6107 (package/inherit python-snakemake-software-deployment-plugin-envmodules
6108 (arguments
6109 (substitute-keyword-arguments
6110 (package-arguments python-snakemake-software-deployment-plugin-envmodules)
6111 ((#:tests? tests #t) #f)
6112 ((#:phases phases #~%standard-phases)
6113 #~(modify-phases #$phases
6114 (delete 'sanity-check)))))
6115 (propagated-inputs
6116 (modify-inputs
6117 (package-propagated-inputs python-snakemake-software-deployment-plugin-envmodules)
6118 (delete "python-snakemake-interface-software-deployment-plugins")))))
6119
6106(define-public python-sparse 6120(define-public python-sparse
6107 (package 6121 (package
6108 (name "python-sparse") 6122 (name "python-sparse")