2021-01-24 00:29:22 +00:00
|
|
|
{ lib
|
2020-02-27 07:15:02 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, isPy3k
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "hg-evolve";
|
2021-03-24 09:28:14 +00:00
|
|
|
version = "10.3.0";
|
2020-02-27 07:15:02 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 09:28:14 +00:00
|
|
|
sha256 = "5d7f73fc1c357134ae9b4a3ed2d844ab8e75a4ca1303679a9e150e87617e7bc7";
|
2020-02-27 07:15:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-02-27 07:15:02 +00:00
|
|
|
description = "Enables the “changeset evolution” feature of Mercurial core";
|
|
|
|
homepage = "https://www.mercurial-scm.org/doc/evolution/";
|
|
|
|
maintainers = with maintainers; [ xavierzwirtz ];
|
2021-01-24 00:29:22 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2020-02-27 07:15:02 +00:00
|
|
|
};
|
|
|
|
}
|