1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 diff-match-patch,
6}:
7
8buildPythonPackage rec {
9 pname = "three-merge";
10 version = "0.1.1";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "0w6rv7rv1zm901wbjkmm6d3vkwyf3csja9p37bb60mar8khszxk0";
16 };
17
18 propagatedBuildInputs = [ diff-match-patch ];
19
20 dontUseSetuptoolsCheck = true;
21
22 pythonImportsCheck = [ "three_merge" ];
23
24 meta = with lib; {
25 description = "Simple library for merging two strings with respect to a base one";
26 homepage = "https://github.com/spyder-ide/three-merge";
27 license = licenses.mit;
28 maintainers = with maintainers; [ ];
29 };
30}