rekado pushed a commit to branch python-team
in repository guix.
commit 25d27be8a937d4fef31af8c5ca87286fa8599485
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Thu Apr 4 20:33:08 2024 +0200
gnu: python-mistletoe: Add missing inputs.
* gnu/packages/markup.scm (python-mistletoe)[native-inputs]: Add
python-setuptools and python-wheel.
Change-Id: I01d0045855f85c2300ad987caf6d0345cf25599a
---
gnu/packages/markup.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
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 <[email protected]>
;;; Copyright © 2023 Zheng Junjie <[email protected]>
;;; Copyright © 2023 Nicolas Graves <[email protected]>
+;;; Copyright © 2024 Ricardo Wurmus <[email protected]>
;;;
;;; 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