1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, isPy3k
5}:
6
7buildPythonPackage rec {
8 pname = "hg-evolve";
9 version = "10.0.1";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "9468b3e2721744b077413c3d4a6b321b61370d4c87b90afa40dc2b48ad877d4b";
14 };
15
16 doCheck = false;
17
18 meta = with stdenv.lib; {
19 description = "Enables the “changeset evolution” feature of Mercurial core";
20 homepage = "https://www.mercurial-scm.org/doc/evolution/";
21 maintainers = with maintainers; [ xavierzwirtz ];
22 license = stdenv.lib.licenses.gpl2Plus;
23 };
24}