mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: python-augeas: Fix build.
* gnu/packages/augeas.scm (python-augeas): Fix build. [native-inputs]: Add python-setuptools and python-wheel. Sort alphabetically. Change-Id: I4b8d31a3e673e9be6e6dd741cf32c6e016858b21
This commit is contained in:
parent
c943829ac7
commit
8b80a84d70
1 changed files with 6 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
;;; Copyright © 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2017 Eric Bavier <bavier@member.fsf.org>
|
||||
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
||||
;;; Copyright © 2024, 2025 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -32,6 +32,7 @@ (define-module (gnu packages augeas)
|
|||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages check)
|
||||
#:use-module (gnu packages libffi)
|
||||
#:use-module (gnu packages python-build)
|
||||
#:use-module (gnu packages readline)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages xml))
|
||||
|
@ -86,7 +87,10 @@ (define-public python-augeas
|
|||
(base32 "1l17gl23f5naram1jaab7gjr9bhjdj97fd9sydvs7cmpns91rbrf"))))
|
||||
(build-system pyproject-build-system)
|
||||
(native-inputs
|
||||
(list python-pytest pkg-config))
|
||||
(list pkg-config
|
||||
python-pytest
|
||||
python-setuptools
|
||||
python-wheel))
|
||||
(propagated-inputs
|
||||
(list python-cffi))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue