diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-01 15:24:58 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-01 15:25:31 +0100 |
| commit | 8cae62c191736ce882c01062e9851772da94a9aa (patch) | |
| tree | 1fc52b9b5f313b77534116ae5dfdaac0487abd55 /gnu/packages/version-control.scm | |
| parent | 011de0d1f50b30048d531bab40224a1fac818810 (diff) | |
gnu: heatwave: Fix build.
* gnu/packages/version-control.scm (heatwave)[arguments] <tests?>: No
tests in PyPI.
[native-inputs]: Add python-setuptools.
Change-Id: I198bb0e47bcf8a4b820752c378cd3919a203e92d
Diffstat (limited to 'gnu/packages/version-control.scm')
| -rw-r--r-- | gnu/packages/version-control.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index b870f7396d2..944c99b8bf9 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -2971,6 +2971,7 @@ changeset itself; there won't be any extra commits. Either GnuPG or OpenSSL can be used for signing.") (license license:gpl2)))) ;per commitsigs.py +;; XXX: Not maintained since 2019. (define-public heatwave (package (name "heatwave") @@ -2982,6 +2983,10 @@ can be used for signing.") (sha256 (base32 "1zzwmb9hvbyswzjgap02rrq8p44hb6xlzk1wd8w01mh2vva0xlx7")))) (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;no tests in PyPI + (native-inputs + (list python-setuptools)) (propagated-inputs (list python-click python-gitpython |
