diff options
| author | Hugo Buddelmeijer <hugo@buddelmeijer.nl> | 2025-10-05 08:28:35 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-10 23:55:53 +0100 |
| commit | 117d17c4e4545504922ca9fc740b916d6eefdd2c (patch) | |
| tree | 9ece36dba131a3cdbb16c54c2b8a4f3a4255c228 | |
| parent | fc6223a598d352d0ea45073a2e9168429277ef3f (diff) | |
gnu: python-plingo: Fix build.
* gnu/packages/potassco.scm (python-plingo): Fix build.
[arguments] <#tests?>: Set to #f as there are no tests.
[native-inputs]: Remove python-wheel.
Change-Id: I0ca048796397489ed04a7c697f52e7658eaba9cb
Reviewed-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/potassco.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/potassco.scm b/gnu/packages/potassco.scm index 9df5a8d5af..f67f0d4f60 100644 --- a/gnu/packages/potassco.scm +++ b/gnu/packages/potassco.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2023 Simon Tournier <zimon.toutoune@gmail.com> ;;; Copyright © 2023 David Elsing <david.elsing@posteo.net> ;;; Copyright © 2024-2025 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2025 Hugo Buddelmeijer <hugo@buddelmeijer.nl> ;;; ;;; This file is part of GNU Guix. ;;; @@ -671,7 +672,8 @@ into Python programs easier.") "0bdz755c6isp29layvzsw9c4kr12x7b5d8ip37ay3cl4dlq4bid3")))) (build-system pyproject-build-system) (arguments - (list #:phases + (list #:tests? #f ;there are no tests + #:phases #~(modify-phases %standard-phases (add-after 'install 'install-script (lambda* (#:key outputs #:allow-other-keys) @@ -687,7 +689,7 @@ into Python programs easier.") ;; XXX: Does this cross-compile? (patch-shebang script))))))) (propagated-inputs (list python-clingo)) - (native-inputs (list python-setuptools python-wheel)) + (native-inputs (list python-setuptools)) (home-page "https://potassco.org/") (synopsis "Solve probabilistic logic programs") (description "This package provides a system to solve probabilistic |
