1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "meld3";
9 version = "2.0.1";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "3ea266994f1aa83507679a67b493b852c232a7905e29440a6b868558cad5e775";
15 };
16
17 doCheck = false;
18
19 meta = with lib; {
20 description = "HTML/XML templating engine used by supervisor";
21 homepage = "https://github.com/supervisor/meld3";
22 license = licenses.free;
23 };
24}