2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2020-02-27 07:15:02 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, isPy3k
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "hg-evolve";
|
2020-11-02 06:17:40 +00:00
|
|
|
version = "10.1.0";
|
2020-02-27 07:15:02 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-02 06:17:40 +00:00
|
|
|
sha256 = "a386e6ee2d9a0e332a49f1cb210c4c11ba9844bcd52808270f48e688314783d8";
|
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 ];
|
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
};
|
|
|
|
}
|