GNU bug report logs - #72219
[PATCH 00/34] Astronomy update 2024/07

Previous Next

Package: guix-patches;

Reported by: Sharlatan Hellseher <sharlatanus <at> gmail.com>

Date: Sat, 20 Jul 2024 22:40:02 UTC

Severity: normal

Tags: patch

Done: Sharlatan Hellseher <sharlatanus <at> gmail.com>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Sharlatan Hellseher <sharlatanus <at> gmail.com>
To: 72219 <at> debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus <at> gmail.com>, Lars-Dominik Braun <lars <at> 6xq.net>, Marius Bakke <marius <at> gnu.org>, Munyoki Kilyungi <me <at> bonfacemunyoki.com>, Sharlatan Hellseher <sharlatanus <at> gmail.com>, Tanguy Le Carrour <tanguy <at> bioneland.org>, jgart <jgart <at> dismail.de>
Subject: [bug#72219] [PATCH 25/34] gnu: Add python-dunamai.
Date: Sat, 20 Jul 2024 23:40:48 +0100
* gnu/packages/python-xyz.scm (python-dunamai): New variable.

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7ef8488bfc..195437c72d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23435,6 +23435,47 @@ (define-public python-dulwich
     ;; Can be used with either license.
     (license (list license:asl2.0 license:gpl2+))))
 
+(define-public python-dunamai
+  (package
+    (name "python-dunamai")
+    (version "1.21.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "dunamai" version))
+       (sha256
+        (base32 "1i35i8ym6n8mpgrq31hivrvfciy12gv26jwlzimmkx9jy2spz0h5"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list
+      #:test-flags
+      #~(list "-k" "not test__version__from_git__shallow")
+      #:phases
+      #~(modify-phases %standard-phases
+          ;; These steps are taked from NixOS package definition:
+          ;; nixpkgs/pkgs/development/python-modules/dunamai/default.nix
+          (add-before 'check 'pre-check
+            (lambda _
+              (setenv "PATH" (string-append #$output "/bin:" (getenv "PATH")))
+              (setenv "HOME" "/tmp")
+              (invoke "git" "config" "--global" "user.email" "nobody <at> example.com")
+              (invoke "git" "config" "--global" "user.name" "Nobody"))))))
+    (propagated-inputs
+     (list python-packaging))
+    (native-inputs
+     (list git-minimal
+           python-poetry-core
+           python-pytest))
+    (home-page "https://github.com/mtkennerly/dunamai")
+    (synopsis "Dynamic version generation")
+    (description
+     "Dunamai is Python library and command line tool for producing dynamic,
+standards-compliant version strings, derived from tags in your version control
+system.  This facilitates uniquely identifying nightly or per-commit builds in
+continuous integration and releasing new versions of your software simply by
+creating a tag.")
+    (license license:expat)))
+
 (define-public python-pbkdf2
   (package
     (name "python-pbkdf2")
-- 
2.41.0





This bug report was last modified 297 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.