diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2024-02-22 20:47:54 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2024-06-30 09:19:47 +0200 |
commit | 35eca45e9a26a44d5e945a7eee8a15312f770d2c (patch) | |
tree | 1a4fd8fa034116798aa12e233b95a6526ce77eb1 /gnu/packages/linux.scm | |
parent | da7edf3ccb2153f14accc3a9dfffe871d0b16279 (diff) |
gnu: Add python-setuptools/python-wheel where necessary.
Changes to pyproject-build-system require explicit dependency on
setuptools/wheel.
Change-Id: Icd7699fc1dc56e974ae7568f2ae916dbf876bea5
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 93bc3b220a..4ddd56926d 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4538,7 +4538,7 @@ time.") (string-append (assoc-ref inputs "kernel-headers") "/include/linux")))))))) (native-inputs - (list python-pytest)) + (list python-pytest python-setuptools python-wheel)) (home-page "https://github.com/gvalkov/python-evdev") (synopsis "Bindings to the Linux input handling subsystem") (description @@ -5162,6 +5162,7 @@ SMBus access.") (string-append "-L" #$(this-package-input "i2c-tools") "/lib")))))))) (inputs (list i2c-tools)) + (native-inputs (list python-setuptools python-wheel)) (synopsis "I2C/SMBus access for Python") (description "This package provides a Python library to access @acronym{I2C, Inter-Integrated Circuit} and @acronym{SMBus, System |