@@ -31021,3 +31021,23 @@ (define-public python-pprintpp
(description
"This package provides a drop-in replacement for pprint that's actually pretty.")
(license license:bsd-3))))
+
+(define-public python-icdiff
+ (package
+ (name "python-icdiff")
+ (version "2.0.5")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jeffkaufman/icdiff")
+ (commit (string-append "release-" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "14gr9j2h7sfw47pwfzspm4zinywhqmzm4a0qz5c2k9wbixz120a4"))))
+ (build-system python-build-system)
+ (home-page "https://www.jefftk.com/icdiff")
+ (synopsis "Improved colored diff")
+ (description "Improved colored diff.")
+ ;; Python Software Foundation License version 2
+ (license license:psfl)))