1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "patiencediff";
5 version = "0.2.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0nm2242xgg59l06m54rzxp41aly3lxjh0a1s7h6dk7ryxjh002lv";
10 };
11
12 meta = with lib; {
13 description = "C implementation of patiencediff algorithm for Python";
14 homepage = "https://github.com/breezy-team/patiencediff";
15 license = licenses.gpl2Plus;
16 maintainers = [ maintainers.wildsebastian ];
17 };
18}