hg-evolve: init at 9.2.2 (#81158)

* maintainers: add xavierzwirtz

* hg-evolve: init at 9.2.2
wip/yesman
Xavier Zwirtz 4 years ago committed by GitHub
parent c50080551f
commit 2922049a6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      maintainers/maintainer-list.nix
  2. 24
      pkgs/development/python-modules/hg-evolve/default.nix
  3. 2
      pkgs/top-level/python-packages.nix

@ -8131,6 +8131,12 @@
email = "ngerstle@gmail.com";
github = "ngerstle";
};
xavierzwirtz = {
email = "me@xavierzwirtz.com";
github = "xavierzwirtz";
githubId = 474343;
name = "Xavier Zwirtz";
};
}

@ -0,0 +1,24 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
}:
buildPythonPackage rec {
pname = "hg-evolve";
version = "9.2.2";
src = fetchPypi {
inherit pname version;
sha256 = "08bjrgxv8zrrz5xxydzkjl4a8cw3g62nmzfnvdzxxcrf1c96qw76";
};
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;
};
}

@ -3441,6 +3441,8 @@ in {
hg-git = callPackage ../development/python-modules/hg-git { };
hg-evolve = callPackage ../development/python-modules/hg-evolve { };
dtopt = callPackage ../development/python-modules/dtopt { };
easywatch = callPackage ../development/python-modules/easywatch { };

Loading…
Cancel
Save