mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add python-diff-match-patch.
* gnu/packages/python.scm (python-diff-match-patch, python2-diff-match-patch): New variables.
This commit is contained in:
parent
03ded2fd3b
commit
186d4f8d08
1 changed files with 21 additions and 0 deletions
|
@ -14282,3 +14282,24 @@ (define-public python-cssmin
|
|||
|
||||
(define-public python2-cssmin
|
||||
(package-with-python2 python-cssmin))
|
||||
|
||||
(define-public python-diff-match-patch
|
||||
(package
|
||||
(name "python-diff-match-patch")
|
||||
(version "20121119")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "diff-match-patch" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0k1f3v8nbidcmmrk65m7h8v41jqi37653za9fcs96y7jzc8mdflx"))))
|
||||
(build-system python-build-system)
|
||||
(home-page "https://code.google.com/p/google-diff-match-patch")
|
||||
(synopsis "Synchronize plain text")
|
||||
(description "Diff Match and Patch libraries offer robust algorithms to
|
||||
perform the operations required for synchronizing plain text.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python2-diff-match-patch
|
||||
(package-with-python2 python-diff-match-patch))
|
||||
|
|
Loading…
Reference in a new issue