diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-12-14 20:54:05 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-12-14 21:32:56 +0200 |
commit | 00b86f5817f5ed4963fd4261aa88792850527e35 (patch) | |
tree | 3dd715a4e00cd77fceb06fc08a9d3565de5bf6fc | |
parent | ace9a96f5be1bef299e7c9133ff05d32f2c55a30 (diff) | |
download | guix-00b86f5817f5ed4963fd4261aa88792850527e35.tar.gz guix-00b86f5817f5ed4963fd4261aa88792850527e35.zip |
gnu: python-setuptools-scm-next: Fix build.
* gnu/packages/python-build.scm (python-setuptools-scm-next)
[native-inputs]: Add python-wheel.
Change-Id: Ib5ba510b67f652119f20b0e5a601cc7082716427
-rw-r--r-- | gnu/packages/python-build.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index c505d84d23..dc981ae402 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015, 2024 Ricardo Wurmus <rekado@elephly.net> -;;; Copyright © 2015, 2020, 2023 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2015, 2020, 2023, 2024 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016 Leo Famulari <leo@famulari.name> ;;; Copyright © 2020, 2023 Marius Bakke <marius@gnu.org> ;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org> @@ -694,7 +694,7 @@ them as the version argument or in a SCM managed file.") (getcwd) "/src:" (getenv "GUIX_PYTHONPATH")))))) #:tests? #f)) ;avoid extra dependencies such as pytest - (native-inputs (list python-setuptools)))) + (native-inputs (list python-setuptools python-wheel)))) (define-public python-editables (package |