guix-patches
[Top][All Lists]
Advanced

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

[bug#53413] [PATCH] Add python-xmldiff-2.4


From: Алексей Дроздов
Subject: [bug#53413] [PATCH] Add python-xmldiff-2.4
Date: Fri, 21 Jan 2022 14:00:08 +0300

From 42772f1b9a7fb236250bebbda9f93ef816af1a32 Mon Sep 17 00:00:00 2001
From: drozdov <drozdov@portalenergy.tech>
Date: Fri, 21 Jan 2022 13:39:55 +0300
Subject: [PATCH] gnu: Add python-xmldiff-2.4
 
---
 gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index eff1c4259b..814be10d81 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -116,6 +116,7 @@
 ;;; Copyright © 2021 Greg Hogan <code@greghogan.com>
 ;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
 ;;; Copyright © 2022 Aleksandr Vityazev <avityazev@posteo.org>
+;;; Copyright © 2022 drozdov <drozdov@portalenergy.tech>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -240,6 +241,23 @@ (define-module (gnu packages python-xyz)
   #:use-module (srfi srfi-1)
   #:use-module (srfi srfi-26))
 
+(define-public python-xmldiff
+  (package
+    (name "python-xmldiff")
+    (version "2.4")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "xmldiff" version))
+        (sha256
+          (base32 "0qygxi3z1jwb0471k7bh5gcqf7wqm4xhrkmwhf36gjgjw46a5gh5"))))
+    (build-system python-build-system)
+    (propagated-inputs (list python-lxml python-setuptools python-six))
+    (home-page "https://github.com/Shoobx/xmldiff")
+    (synopsis "Creates diffs of XML files")
+    (description "A python tool that figures out the differences between two similar XML files, in the same way the diff utility does it")
+    (license license:expat)))
+
 (define-public python-janus
   (package
     (name "python-janus")
-- 
2.34.0
 

reply via email to

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