blob: d16bd6e9e5ceaa5e16a0b711e37afc4941ffaae7 (
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,
setuptools,
}:
buildPythonPackage rec {
pname = "merge3";
version = "0.0.15";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-0+rCE9hNVt/J45VSrIJGx4YKlAlk6+7YqL5EIvZJK68=";
};
nativeBuildInputs = [ setuptools ];
pythonImportsCheck = [ "merge3" ];
meta = {
description = "Python implementation of 3-way merge";
mainProgram = "merge3";
homepage = "https://github.com/breezy-team/merge3";
license = lib.licenses.gpl2Plus;
maintainers = [ ];
};
}
|