nixpkgs/pkgs/development/python-modules/hg-evolve/default.nix
Luke Granger-Brown 8268e64d0e python3Packages.hg-evolve: 10.3.0 -> 10.3.1
Fix compatibility with Mercurial 5.8.
2021-05-08 14:49:29 -07:00

25 lines
535 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
}:
buildPythonPackage rec {
pname = "hg-evolve";
version = "10.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "03xwnadpvgna70n6pfxb7xdrszppdqrx5qmkbr1v0jzbh5rnzi6b";
};
doCheck = false;
meta = with lib; {
description = "Enables the changeset evolution feature of Mercurial core";
homepage = "https://www.mercurial-scm.org/doc/evolution/";
maintainers = with maintainers; [ xavierzwirtz lukegb ];
license = licenses.gpl2Plus;
};
}