diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-04-04 20:33:08 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-11 21:18:08 +0100 |
commit | 655c77115b4b4d98959c12c524c8348e9d4c9fa7 (patch) | |
tree | d45f2cb0f96d46783636bbc8d6a27ea7347ccf4d | |
parent | 9128575222fa9bc856380305c11063338d7f487d (diff) |
gnu: python-mistletoe: Add missing inputs.
* gnu/packages/markup.scm (python-mistletoe)[native-inputs]: Add
python-setuptools and python-wheel.
Change-Id: I01d0045855f85c2300ad987caf6d0345cf25599a
-rw-r--r-- | gnu/packages/markup.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/markup.scm b/gnu/packages/markup.scm index 2cc3d0415d..eac5dbda4f 100644 --- a/gnu/packages/markup.scm +++ b/gnu/packages/markup.scm @@ -13,6 +13,7 @@ ;;; Copyright © 2022, 2024 Vinicius Monego <monego@posteo.net> ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com> ;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr> +;;; Copyright © 2024 Ricardo Wurmus <rekado@elephly.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -56,6 +57,7 @@ #:use-module (gnu packages perl-compression) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) + #:use-module (gnu packages python-build) #:use-module (gnu packages python-xyz) #:use-module (gnu packages tex) #:use-module (gnu packages web) @@ -602,7 +604,9 @@ with a few extensions.") (arguments ;; FileNotFoundError (not distributed in PyPI). (list #:test-flags #~(list "-k" "not test_main"))) - (native-inputs (list python-parameterized python-pytest)) + (native-inputs + (list python-parameterized python-pytest + python-setuptools python-wheel)) (home-page "https://github.com/miyuchina/mistletoe") (synopsis "Extensible Markdown parser in pure Python") (description |