guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

19/96: gnu: Add python-hatch-vcs.


From: guix-commits
Subject: 19/96: gnu: Add python-hatch-vcs.
Date: Wed, 19 Apr 2023 21:41:06 -0400 (EDT)

apteryx pushed a commit to branch core-updates
in repository guix.

commit 2bf851e4b83f91236657982b2d334a1db9d027ec
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sun Apr 16 00:33:43 2023 -0400

    gnu: Add python-hatch-vcs.
    
    * gnu/packages/python-build.scm (python-hatch-vcs): New variable.
---
 gnu/packages/python-build.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index f2724ed2fa..0e3d3675a4 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -675,3 +675,22 @@ has features such as:
 @item Responsive CLI, ~2-3x faster than equivalent tools.
 @end itemize")
     (license license:expat)))
+
+(define-public python-hatch-vcs
+  (package
+    (name "python-hatch-vcs")
+    (version "0.3.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "hatch_vcs" version))
+              (sha256
+               (base32
+                "1viz2mdfxfqpsd5f30410q6smj90qfxihvy9idzwd0p4ziy11iff"))))
+    (arguments (list #:tests? #f))      ;avoid extra test dependencies
+    (build-system pyproject-build-system)
+    (propagated-inputs (list python-hatchling python-setuptools-scm))
+    (home-page "https://github.com/ofek/hatch-vcs";)
+    (synopsis "Hatch plugin for versioning with your preferred VCS")
+    (description "This package is a plugin for Hatch that uses your preferred
+version control system (like Git) to determine project versions.")
+    (license license:expat)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]