Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / three-merge / default.nix
blob2bb1891cd0bbc427137a4da73da6cc81eeae81ee
1 { lib, buildPythonPackage, fetchPypi, diff-match-patch }:
3 buildPythonPackage rec {
4   pname = "three-merge";
5   version = "0.1.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0w6rv7rv1zm901wbjkmm6d3vkwyf3csja9p37bb60mar8khszxk0";
10   };
12   propagatedBuildInputs = [ diff-match-patch ];
14   dontUseSetuptoolsCheck = true;
16   pythonImportsCheck = [ "three_merge" ];
18   meta = with lib; {
19     description = "Simple library for merging two strings with respect to a base one";
20     homepage = "https://github.com/spyder-ide/three-merge";
21     license = licenses.mit;
22     maintainers = with maintainers; [ ];
23   };