diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 8b51bfb3d1..38659e3209 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -117,6 +117,7 @@ ;;; Copyright © 2022 John Kehayias ;;; Copyright © 2022 Aleksandr Vityazev ;;; Copyright © 2022 Evgeny Pisemsky +;;; Copyright © 2022 drozdov ;;; ;;; This file is part of GNU Guix. ;;; @@ -242,6 +243,24 @@ #: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-six)) + (home-page "https://github.com/Shoobx/xmldiff") + (synopsis "Creates diffs of XML files") + (description "This Python tool figures out the differences between two +similar XML files, in the same way the @command{diff} utility does it.") + (license license:expat))) + (define-public python-janus (package (name "python-janus")