blob: c4df05cf3d583490f5ffa778098892e2c50c14d8 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
diff-match-patch,
}:
buildPythonPackage rec {
pname = "three-merge";
version = "0.1.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0w6rv7rv1zm901wbjkmm6d3vkwyf3csja9p37bb60mar8khszxk0";
};
propagatedBuildInputs = [ diff-match-patch ];
pythonImportsCheck = [ "three_merge" ];
meta = {
description = "Simple library for merging two strings with respect to a base one";
homepage = "https://github.com/spyder-ide/three-merge";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|