2020-12-06 21:38:21 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "patiencediff";
|
2021-06-18 22:47:28 +01:00
|
|
|
version = "0.2.2";
|
2020-12-06 21:38:21 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-18 22:47:28 +01:00
|
|
|
sha256 = "456d9fc47fe43f9aea863059ea2c6df5b997285590e4b7f9ee8fbb6c3419b5a7";
|
2020-12-06 21:38:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "C implementation of patiencediff algorithm for Python";
|
|
|
|
homepage = "https://github.com/breezy-team/patiencediff";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.wildsebastian ];
|
|
|
|
};
|
|
|
|
}
|