blob: a794308df3140e51bdcec1fcacad8c3aec4d1208 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
lib,
buildPythonPackage,
fetchPypi,
flit-core,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "diff-match-patch";
version = "20241021";
pyproject = true;
src = fetchPypi {
pname = "diff_match_patch";
inherit version;
hash = "sha256-vq5XqZ+kgIRTKTXuKWi4Zh24YYYuyCxvIfSs3W2DUHM=";
};
dependencies = [ flit-core ];
nativeCheckInputs = [ unittestCheckHook ];
meta = with lib; {
homepage = "https://github.com/diff-match-patch-python/diff-match-patch";
description = "Diff, Match and Patch libraries for Plain Text";
license = licenses.asl20;
maintainers = [ ];
};
}
|