mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
25 lines
561 B
Nix
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;
|
|
};
|
|
}
|