nixpkgs/pkgs/development/python-modules/hg-evolve/default.nix
2020-09-28 13:11:23 -07:00

25 lines
561 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
}:
buildPythonPackage rec {
pname = "hg-evolve";
version = "10.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "75892623258339613528df45dcd1004786bf73e8d95407886d79bc4567fbde4d";
};
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;
};
}