diff options
author | jgart <jgart@dismail.de> | 2024-07-15 17:21:06 -0500 |
---|---|---|
committer | jgart <jgart@dismail.de> | 2024-07-15 17:40:13 -0500 |
commit | f0df4d47f06d6b88d577fd026c1d69300a873e9f (patch) | |
tree | fc7e44d67a71fa69fd9d0332c10c831a5ef5518e | |
parent | 27d7584ed5bc7c1147ae4e5c99bb2439f51e4efe (diff) | |
download | guix-f0df4d47f06d6b88d577fd026c1d69300a873e9f.tar guix-f0df4d47f06d6b88d577fd026c1d69300a873e9f.tar.gz |
gnu: python-gh-md-to-html: Use correct package dependency version.
* gnu/packages/python-xyz.scm (python-gh-md-to-html) [propagated-inputs]: Add
python-emoji-for-gh-md-to-html.
Change-Id: I41a2b0cc67b467644ebee68b548e33ff7173ca85
-rw-r--r-- | gnu/packages/python-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 923f9f803c..4d7ddeb9d7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2164,7 +2164,7 @@ of a loop structure or other iterative computation.") (arguments (list #:tests? #false)) ;there are none (propagated-inputs (list python-beautifulsoup4 - python-emoji + python-emoji-for-gh-md-to-html python-pillow python-requests python-shellescape |