diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-04-04 20:33:08 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2024-06-30 09:20:55 +0200 |
commit | 4c9d49d615dda220650f4b7e52e4f008e43a5ed5 (patch) | |
tree | 4ed97296fb7ba5a2c7d68e1d9b20b6b7bc0298ae | |
parent | 71f87207a307ae915abe345c5b5aa52d67f33800 (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 |