diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-12-15 20:21:21 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-12-15 20:21:21 +0100 |
commit | e4aeec2fe44fd047b51a0093990fcac992ae745c (patch) | |
tree | e410513809e9c00226c543d263338232a6059dd9 /gnu/packages | |
parent | ba450f1879569ae44c326203b5350eedf84f8004 (diff) | |
download | guix-e4aeec2fe44fd047b51a0093990fcac992ae745c.tar.gz guix-e4aeec2fe44fd047b51a0093990fcac992ae745c.zip |
gnu: snakemake: Add missing inputs.
* gnu/packages/python-xyz.scm (snakemake)[native-inputs]: Add
python-setuptools and python-wheel.
Change-Id: I133a813d1c5a5d6d7c4450d09987ee94e97b9089
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 5aaaf5faec..bef517fbf1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -14180,7 +14180,9 @@ approach.") python-wrapper python-pytest python-pandas - python-requests-mock)) + python-requests-mock + python-setuptools + python-wheel)) (home-page "https://snakemake.readthedocs.io") (synopsis "Python-based execution environment for make-like workflows") (description |