diff options
author | Lars-Dominik Braun <[email protected]> | 2024-02-22 20:47:54 +0100 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2024-12-13 20:18:25 +0000 |
commit | 6d97c15911a51d29f91e3656f9c4ab38e08d7f21 (patch) | |
tree | a42bcc8f38f2532ca0218d92323c993729912961 /gnu/packages/potassco.scm | |
parent | 1ef178c644178304b24bd29c7563ab0529c15f8f (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/potassco.scm')
-rw-r--r-- | gnu/packages/potassco.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/potassco.scm b/gnu/packages/potassco.scm index e08b478c22..c8bb094b0a 100644 --- a/gnu/packages/potassco.scm +++ b/gnu/packages/potassco.scm @@ -629,6 +629,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)) (home-page "https://potassco.org/") (synopsis "Solve probabilistic logic programs") (description "This package provides a system to solve probabilistic @@ -714,6 +715,9 @@ as logic programs.") ;; XXX: python-clingo-dl installs clingodl instead… (("clingo-dl") "clingodl")))))) (build-system pyproject-build-system) + (native-inputs + (list python-setuptools + python-wheel)) (propagated-inputs (list python-clingo python-clingo-dl |