diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-21 23:01:48 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-21 23:16:18 +0100 |
commit | f27bdf634e39033f38bc36472d68f6f35ec9fb44 (patch) | |
tree | b010f0b1ef2319c44ac201030bc2ae36e8e7eb9f /gnu/packages/game-development.scm | |
parent | e8a3f50fb0edfe61abe180544dbc4789884337d5 (diff) | |
download | guix-f27bdf634e39033f38bc36472d68f6f35ec9fb44.tar.gz guix-f27bdf634e39033f38bc36472d68f6f35ec9fb44.zip |
gnu: python-sge: Adjust inputs.
As seen in python-team build
<https://ci.guix.gnu.org/build/6099416/log/raw>.
* gnu/packages/game-development.scm (python-sge): Adjust inputs.
[arguments]<#:tests>: Disable as they are not provided.
[native-inputs]: Add python-setuptools.
Change-Id: I46a83e8ebb0b25ff7d3895334bef257ce98da20f
Diffstat (limited to 'gnu/packages/game-development.scm')
-rw-r--r-- | gnu/packages/game-development.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 0bae7cfe11..ee869c9cc5 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -106,6 +106,7 @@ #:use-module (gnu packages pkg-config) #:use-module (gnu packages pulseaudio) #:use-module (gnu packages python) + #:use-module (gnu packages python-build) #:use-module (gnu packages python-crypto) #:use-module (gnu packages python-web) #:use-module (gnu packages python-xyz) @@ -504,6 +505,10 @@ types (revolute, prismatic, wheel, etc.).") (base32 "1bp4spcjsmy6xv2j0ciaripfgd3pj5413hhhrj8v8mxcwhraw68p")))) (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ; no tests + (native-inputs + (list python-setuptools)) (propagated-inputs (list python-pygame python-uniseg)) (home-page "https://python-sge.github.io/") |