diff options
| author | Sergio Pastor Pérez <sergio.pastorperez@gmail.com> | 2025-10-01 22:59:36 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-01 23:58:25 +0100 |
| commit | d10e50b858fc77300f42d20b698b353e2699c8a6 (patch) | |
| tree | 42d923063f8a8b5128903839f09b47fbe186a4f1 | |
| parent | dadedd0adac684b7fdc0310038b5d599d23586f2 (diff) | |
gnu: compdb: Fix tests.
* gnu/packages/build-tools.scm (compdb)[arguments] <test-backend>: Use
'unittest.
[native-inputs]: Remove python-wheel.
Change-Id: I0d152fe38b648287b1a2470f1c88ee3a29034b41
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/build-tools.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm index 62b383179db..8a244893f1b 100644 --- a/gnu/packages/build-tools.scm +++ b/gnu/packages/build-tools.scm @@ -768,7 +768,10 @@ be reached via direct API calls.") (sha256 (base32 "0f4x0gm5n1mr87dx3gzn5da16a1qhd2y3kz22dl5xsd9pd720l4w")))) (build-system pyproject-build-system) - (native-inputs (list python-setuptools python-wheel)) + (arguments + (list + #:test-backend ''unittest)) + (native-inputs (list python-setuptools)) (propagated-inputs (list python-configparser)) (home-page "https://github.com/Sarcasm/compdb") (synopsis "Compilation database Swiss army knife") |
