Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / meld3 / default.nix
bloba751dbeac3fc4a4b97707f979fd1fbcb48a37430
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "meld3";
8   version = "2.0.1";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "3ea266994f1aa83507679a67b493b852c232a7905e29440a6b868558cad5e775";
13   };
15   doCheck = false;
17   meta = with lib; {
18     description = "An HTML/XML templating engine used by supervisor";
19     homepage = "https://github.com/supervisor/meld3";
20     license = licenses.free;
21   };