sharlatan pushed a commit to branch master
in repository guix.
commit e8d9a163be8fd3ae50329c92b106d9fb2c4c8227
Author: Wilko Meyer <[email protected]>
AuthorDate: Mon Feb 19 10:53:47 2024 +0100
gnu: Add python-monthdelta.
* gnu/packages/python-xyz.scm (python-monthdelta): New variable.
Change-Id: I0e651f41252ec50cd2d7063e37d428265b17d8c2
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
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 c638263473..2a929466d8 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18924,6 +18924,23 @@ text.")
(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")