diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-16 20:36:11 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-16 20:39:12 +0100 |
commit | ea5cee19a6c4b6d3bf4feb61f55f7479ab0b6f88 (patch) | |
tree | 493c46aa8fd9c7be97ecc6482c90635046a1c33d | |
parent | 6f6e795316546894beaa5898298177df5988ec09 (diff) | |
download | guix-ea5cee19a6c4b6d3bf4feb61f55f7479ab0b6f88.tar.gz guix-ea5cee19a6c4b6d3bf4feb61f55f7479ab0b6f88.zip |
gnu: snakemake: Rename variable in python-xyz.
There is a duplicated variable with this name in python-science but
different version, rename the variable in python-xyz to reflect it's
version.
* gnu/packages/python-xyz.scm (snakemake): Rename variable to snakemake-5.
(snakemake-6): Inherit from snakemake-5.
Change-Id: Iabb67d68ea5b896a2524eaf9bf73669068cccaeb
-rw-r--r-- | gnu/packages/python-xyz.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index fd797ff2c0..36ef3da565 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15290,7 +15290,7 @@ approach.") "This is a Python package for easy throttling with asyncio support.") (license license:expat))) -(define-public snakemake +(define-public snakemake-5 (package (name "snakemake") (version "5.32.2") @@ -15378,7 +15378,7 @@ Python style, together with a fast and comfortable execution environment.") (define-public snakemake-6 (package - (inherit snakemake) + (inherit snakemake-5) (name "snakemake") (version "6.15.5") (source |