unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#69268] [PATCH 0/2] Add python-heatwave.
@ 2024-02-19  9:50 Wilko Meyer
  2024-02-19  9:53 ` [bug#69268] [PATCH 1/2] gnu: Add python-monthdelta Wilko Meyer
  2024-02-19  9:53 ` [bug#69268] [PATCH 2/2] gnu: Add python-heatwave Wilko Meyer
  0 siblings, 2 replies; 3+ messages in thread
From: Wilko Meyer @ 2024-02-19  9:50 UTC (permalink / raw)
  To: 69268
  Cc: Wilko Meyer, Lars-Dominik Braun, Marius Bakke, Munyoki Kilyungi,
	Sharlatan Hellseher, jgart

Hi Guix,

this small patchset adds python-heatwave as well as its dependency
python-monthdelta to python-xyz.py.

Kind regards,

Wilko

Wilko Meyer (2):
  gnu: Add python-monthdelta.
  gnu: Add python-heatwave.

 gnu/packages/python-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)


base-commit: 07ecdb99b6c4b6b3e993d08034138bf69414020b
-- 
2.41.0





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [bug#69268] [PATCH 1/2] gnu: Add python-monthdelta.
  2024-02-19  9:50 [bug#69268] [PATCH 0/2] Add python-heatwave Wilko Meyer
@ 2024-02-19  9:53 ` Wilko Meyer
  2024-02-19  9:53 ` [bug#69268] [PATCH 2/2] gnu: Add python-heatwave Wilko Meyer
  1 sibling, 0 replies; 3+ messages in thread
From: Wilko Meyer @ 2024-02-19  9:53 UTC (permalink / raw)
  To: 69268
  Cc: Wilko Meyer, Lars-Dominik Braun, Marius Bakke, Munyoki Kilyungi,
	Sharlatan Hellseher, jgart

* gnu/packages/python-xyz.scm (python-monthdelta): New variable.

Change-Id: I0e651f41252ec50cd2d7063e37d428265b17d8c2
---
 gnu/packages/python-xyz.scm | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c3dfb9603c..c8fc5e1f7c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17727,6 +17727,23 @@ (define-public python-colorama-for-awscli
        (sha256
         (base32 "189n8hpijy14jfan4ha9f5n06mnl33cxz7ay92wjqgkr639s0vg9"))))))
 
+(define-public python-monthdelta
+  (package
+    (name "python-monthdelta")
+    (version "0.9.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "MonthDelta" version))
+       (sha256
+        (base32 "0iwcsk7ryjw5h1wp10ykwd01f3am8gdlga6461q1v1njsk0rxh41"))))
+    (build-system pyproject-build-system)
+    (home-page "http://packages.python.org/MonthDelta")
+    (synopsis "Date computations with months")
+    (description "MonthDelta provides functionality to do date computations
+with months.")
+    (license license:expat)))
+
 (define-public python-moto
   (package
     (name "python-moto")
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#69268] [PATCH 2/2] gnu: Add python-heatwave.
  2024-02-19  9:50 [bug#69268] [PATCH 0/2] Add python-heatwave Wilko Meyer
  2024-02-19  9:53 ` [bug#69268] [PATCH 1/2] gnu: Add python-monthdelta Wilko Meyer
@ 2024-02-19  9:53 ` Wilko Meyer
  1 sibling, 0 replies; 3+ messages in thread
From: Wilko Meyer @ 2024-02-19  9:53 UTC (permalink / raw)
  To: 69268
  Cc: Wilko Meyer, Lars-Dominik Braun, Marius Bakke, Munyoki Kilyungi,
	Sharlatan Hellseher, jgart

* gnu/packages/python-xyz.scm (python-heatwave): New variable.
* gnu/packages/python-xyz.scm: Add my copyright header.

Change-Id: I640aecb3a0d9c454333a3913c039c637d24d9f79
---
 gnu/packages/python-xyz.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c8fc5e1f7c..e318438c94 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -147,6 +147,7 @@
 ;;; Copyright © 2023 Attila Lendvai <attila@lendvai.name>
 ;;; Copyright © 2023, 2024 Troy Figiel <troy@troyfigiel.com>
 ;;; Copyright © 2024 Timothee Mathieu <timothee.mathieu@inria.fr>
+;;; Copyright © 2024 Wilko Meyer <w@wmeyer.eu>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -31533,6 +31534,24 @@ (define-public python-roundrobin
 distribution in Python.")
     (license license:expat)))
 
+(define-public python-heatwave
+  (package
+    (name "python-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 "A way of visualizing a heat map of a git repo")
+    (description
+     "This package provides a way of visualizing a heat map of a git repo.")
+    (license license:gpl3)))
+
 (define-public python-helpdev
   (package
     (name "python-helpdev")
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-02-19  9:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-19  9:50 [bug#69268] [PATCH 0/2] Add python-heatwave Wilko Meyer
2024-02-19  9:53 ` [bug#69268] [PATCH 1/2] gnu: Add python-monthdelta Wilko Meyer
2024-02-19  9:53 ` [bug#69268] [PATCH 2/2] gnu: Add python-heatwave Wilko Meyer

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).