diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2024-02-22 20:47:54 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-11 21:17:59 +0100 |
commit | d62b350a8e816aef3d52bab87af88373675f1b8b (patch) | |
tree | b1ed4402d68ea465d11bbf41f51bff2c14302b2a /gnu/packages/games.scm | |
parent | d1f362d81c01544a1f16a0419075f025ff80df4f (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/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 8137015fcf..748a3fc877 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -202,6 +202,7 @@ #:use-module (gnu packages protobuf) #:use-module (gnu packages pulseaudio) #:use-module (gnu packages python) + #:use-module (gnu packages python-build) #:use-module (gnu packages python-compression) #:use-module (gnu packages python-web) #:use-module (gnu packages python-xyz) @@ -2539,6 +2540,7 @@ Every puzzle has a complete solution, although there may be more than one.") (copy-recursively "examples" examples))))))) (inputs (list dds `(,python "tk"))) (propagated-inputs (list python-colorama)) + (native-inputs (list python-setuptools python-wheel)) (home-page "https://github.com/anntzer/redeal") (synopsis "Deal generator for bridge card game, written in Python") |