guix-patches
[Top][All Lists]
Advanced

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

[bug#42297] [PATCH 05/10] gnu: Add python-unidiff.


From: Alexandru-Sergiu Marton
Subject: [bug#42297] [PATCH 05/10] gnu: Add python-unidiff.
Date: Thu, 9 Jul 2020 22:19:13 +0300

* gnu/packages/python-xyz.scm (python-unidiff): New variable.
---
 gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c97f2bf331..20abc1a9d3 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20531,3 +20531,24 @@ compatible object storage server.")
     (description "A Python library for interfacing with Mercurial's
 CommandServer.")
     (license license:expat)))
+
+(define-public python-unidiff
+  (package
+    (name "python-unidiff")
+    (version "0.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "unidiff" version))
+       (sha256
+        (base32
+         "07wqva9lxsh5jhnp6ajr00z8wqq6fzkr37g1zsrg8zrmk9723ich"))))
+    (build-system python-build-system)
+    (home-page
+     "https://github.com/matiasb/python-unidiff";)
+    (synopsis
+     "Unified diff parsing/metadata extraction library")
+    (description
+     "Unidiff is a simple Python library to parse and interact with unified
+diff data.")
+    (license license:expat)))
-- 
2.27.0






reply via email to

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