gnu: Add heatwave.

* gnu/packages/version-control.scm (python-heatwave): New variable.

Change-Id: I640aecb3a0d9c454333a3913c039c637d24d9f79
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Wilko Meyer 2024-02-19 10:53:48 +01:00 committed by Sharlatan Hellseher
parent e8d9a163be
commit 12455b3634
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -58,6 +58,7 @@
;;; Copyright © 2024 Simon Tournier <zimon.toutoune@gmail.com>
;;; Copyright © 2024 Javier Olaechea <pirata@gmail.com>
;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
;;; Copyright © 2024 Wilko Meyer <w@wmeyer.eu>
;;;
;;; This file is part of GNU Guix.
;;;
@ -2515,6 +2516,27 @@ changeset itself; there won't be any extra commits. Either GnuPG or OpenSSL
can be used for signing.")
(license license:gpl2)))) ;per commitsigs.py
(define-public heatwave
(package
(name "heatwave")
(version "1.2.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "heatwave" version))
(sha256
(base32 "1zzwmb9hvbyswzjgap02rrq8p44hb6xlzk1wd8w01mh2vva0xlx7"))))
(build-system pyproject-build-system)
(propagated-inputs
(list python-click
python-gitpython
python-monthdelta))
(home-page "https://github.com/james-stoup/heatwave")
(synopsis "Heat map visualization of a git repository")
(description
"This package provides a way of visualizing a heat map of a git repo.")
(license license:gpl3)))
(define-public neon
(package
(name "neon")