mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add python-xmldiff.
* gnu/packages/python-xyz.scm (python-xmldiff): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
d3fb8036b7
commit
afb9f27523
1 changed files with 19 additions and 0 deletions
|
@ -117,6 +117,7 @@
|
|||
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
|
||||
;;; Copyright © 2022 Aleksandr Vityazev <avityazev@posteo.org>
|
||||
;;; Copyright © 2022 Evgeny Pisemsky <evgeny@pisemsky.com>
|
||||
;;; Copyright © 2022 drozdov <drozdov@portalenergy.tech>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -242,6 +243,24 @@ (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-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")
|
||||
|
|
Loading…
Reference in a new issue