gnu: Add python-patiencediff.

* gnu/packages/python-xyz.scm (python-patiencediff): New variable.
This commit is contained in:
Efraim Flashner 2020-07-06 12:02:09 +03:00
parent 4c93818392
commit 25a23a8d4a
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -4481,6 +4481,26 @@ (define-public python-pygit2
;; GPL2.0 only, with linking exception.
(license license:gpl2)))
(define-public python-patiencediff
(package
(name "python-patiencediff")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "patiencediff" version))
(sha256
(base32
"0yjk50lsd4gnllxls925xbcdxwvmda37w2a1shk0p1nvl3fcha6q"))))
(build-system python-build-system)
(home-page "https://www.breezy-vcs.org/")
(synopsis "Python implementation of the patiencediff algorithm")
(description
"This package contains a Python implementation of the @code{patiencediff}
algorithm. Patiencediff provides a good balance of performance, nice output for
humans, and implementation simplicity.")
(license license:gpl2)))
(define-public python-pyparsing
(package
(name "python-pyparsing")