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
This commit is contained in:
Sharlatan Hellseher 2024-10-21 23:01:48 +01:00
parent e8a3f50fb0
commit f27bdf634e
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -106,6 +106,7 @@ (define-module (gnu packages game-development)
#: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 @@ (define-public python-sge
(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/")