sharlatan pushed a commit to branch master
in repository guix.
commit 12455b36346f7ff0acf0811d9bddb657aa721075
Author: Wilko Meyer <[email protected]>
AuthorDate: Mon Feb 19 10:53:48 2024 +0100
gnu: Add heatwave.
* gnu/packages/version-control.scm (python-heatwave): New variable.
Change-Id: I640aecb3a0d9c454333a3913c039c637d24d9f79
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/version-control.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 6bd37fee82..dfc455ad88 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -58,6 +58,7 @@
;;; Copyright © 2024 Simon Tournier <[email protected]>
;;; Copyright © 2024 Javier Olaechea <[email protected]>
;;; Copyright © 2024 Ashish SHUKLA <[email protected]>
+;;; Copyright © 2024 Wilko Meyer <[email protected]>
;;;
;;; 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")