25 lines
549 B
Nix
25 lines
549 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hg-evolve";
|
|
version = "10.0.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "03kn1c62y6rb851wjhsaxkrwq223hkc4ij59i85999byyb2hyqad";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
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;
|
|
};
|
|
}
|